Updated README for yankring
This commit is contained in:
parent
88b69c8dcb
commit
41b3f99dad
@ -398,6 +398,7 @@ files contain key mappings as well (TODO: probably will move them out to skwp-ke
|
|||||||
* `:ColorToggle` - turn on #abc123 color highlighting (useful for css)
|
* `:ColorToggle` - turn on #abc123 color highlighting (useful for css)
|
||||||
* `:gitv` - Git log browsers
|
* `:gitv` - Git log browsers
|
||||||
* `,hi` - show current Highlight group. if you don't like the color of something, use this, then use `hi! link [groupname] [anothergroupname]` in your vimrc.after to remap the color. You can see available colors using `:hi`
|
* `,hi` - show current Highlight group. if you don't like the color of something, use this, then use `hi! link [groupname] [anothergroupname]` in your vimrc.after to remap the color. You can see available colors using `:hi`
|
||||||
|
* `,yr` - view the yankring - a list of your previous copy commands. also you can paste and hit `ctrl-p` for cycling through previous copy commands
|
||||||
|
|
||||||
#### Ruby Debugger
|
#### Ruby Debugger
|
||||||
|
|
||||||
@ -470,7 +471,7 @@ files contain key mappings as well (TODO: probably will move them out to skwp-ke
|
|||||||
|
|
||||||
* SplitJoin - easily split up things like ruby hashes into multiple lines or join them back together. Try :SplitjoinJoin and :SplitjoinSplit or use the bindings sj(split) and sk(unsplit) - mnemonically j and k are directions down and up
|
* SplitJoin - easily split up things like ruby hashes into multiple lines or join them back together. Try :SplitjoinJoin and :SplitjoinSplit or use the bindings sj(split) and sk(unsplit) - mnemonically j and k are directions down and up
|
||||||
* tabularize - align code effortlessly by using :Tabularize /[character] to align by a character, or try the keymaps
|
* tabularize - align code effortlessly by using :Tabularize /[character] to align by a character, or try the keymaps
|
||||||
* yankring - effortless sanity for pasting. every time you yank something it goes into a buffer. after hitting p to paste, use ctrl-p or ctrl-n to cycle through the paste options. great for when you accidentally overwrite your yank with a delete
|
* yankring - effortless sanity for pasting. every time you yank something it goes into a buffer. after hitting p to paste, use ctrl-p or ctrl-n to cycle through the paste options. great for when you accidentally overwrite your yank with a delete.
|
||||||
* surround - super easy quote and tag manipulation - ysiw" - sourround inner word with quotes. ci"' - change inner double quotes to single quotes, etc
|
* surround - super easy quote and tag manipulation - ysiw" - sourround inner word with quotes. ci"' - change inner double quotes to single quotes, etc
|
||||||
* greplace - use :Gsearch to find across many files, replace inside the changes, then :Greplace to do a replace across all matches
|
* greplace - use :Gsearch to find across many files, replace inside the changes, then :Greplace to do a replace across all matches
|
||||||
* ConqueTerm - embedded fully colorful shell inside your vim
|
* ConqueTerm - embedded fully colorful shell inside your vim
|
||||||
|
@ -1 +1,2 @@
|
|||||||
let g:yankring_history_file = '.yankring-history'
|
let g:yankring_history_file = '.yankring-history'
|
||||||
|
nnoremap ,yr :YRShow<CR>
|
||||||
|
Loading…
Reference in New Issue
Block a user