Download the inspect-registers.vim file from this gist. Open the file in Vim, launching with no vimrc:
vim -Nu NONE inspect-registers.vim
Source the file:
:source %
Insert text on line one:
| #include <string> | |
| #include <iostream> | |
| #include <cstdio> | |
| #include <cstdlib> | |
| #include <vector> | |
| #include <utility> | |
| #include <algorithm> | |
| #include <sstream> | |
| #include <ctime> |
| (require 'org) | |
| (require 'org-pomodoro) | |
| (require 'json) | |
| (require 'request) | |
| (defconst org-recodoro "0.0.1" | |
| "The version of the org-recodoro lisp code.") | |
| (defgroup org-recodoro nil | |
| "Record your pomodoro through API and see your achievements." |
Download the inspect-registers.vim file from this gist. Open the file in Vim, launching with no vimrc:
vim -Nu NONE inspect-registers.vim
Source the file:
:source %
Insert text on line one:
| /usr/bin/plutil -convert xml1 -o - ~/Library/Safari/Bookmarks.plist | grep -E -o '<string>http[s]{0,1}://.*</string>' | grep -v icloud | sed -E 's/<\/{0,1}string>//g' |
| set t_Co=256 | |
| set background=dark | |
| if !has('gui_running') | |
| let g:solarized_termcolors=&t_Co | |
| let g:solarized_termtrans=1 | |
| endif | |
| colorscheme solarized |
| #To install ruby-debug on Ubuntu ruby-1.9.3 you need to download from http://rubyforge.org/frs/?group_id=8883 | |
| linecache19-0.5.13.gem | |
| ruby_core_source-0.1.5.gem | |
| ruby-debug19-0.11.6.gem | |
| ruby-debug-base19-0.11.26.gem | |
| #Then in your console | |
| export RVM_SRC=/your/path/to/ruby-1.9.3 |