Request Plugin Addition: vim-abolish by tpope
See original GitHub issueSubvert and the coercion operators are some of my most used features in vim. I can’t believe no-one has suggested it yet!?
Abolish may be a difficult thing to emulate, since it adds iabbrev
commands to the .vimrc
. But, the subvert substitution and the coercion operations are 🔥
Issue Analytics
- State:
- Created 6 years ago
- Reactions:24
- Comments:9 (4 by maintainers)
Top Results From Across the Web
Vim Magic with Abolish.vim - Hashrocket
The creator Tim Pope describes Abolish.vim as follows: It's three superficially unrelated plugins in one that share a common theme: working with ...
Read more >Preview for vim-abolish? : r/neovim - Reddit
tpope /vim-abolish provides a useful :Subvert command that works like a smart substitution. Is it possible to preview the command's effects ...
Read more >Advanced filtering utilities in Vim - » Linux Magazine
Vim-abolish is installed by downloading the plugin from its homepage [1] to ~/.vim or ... cd ~/.vim/bundle git clone git://github.com/tpope/vim-abolish.git.
Read more >Vim plugins - The Blue Book
Add the plugin and configure it so vim runs it each time you save. ... Error adding elipsis instead of three dots: Pope...
Read more >Vim for Writers - NaperWriMo Wiki
vim is a very powerful modal text editor with a large system of plugins. ... writing things Plug 'tpope/vim-abolish' " Fancy abbreviation replacements...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@vegerot I think there are a couple more issues besides the lack of manpower:
Because the editor is essentially a web-page, the plugin has to do a couple things: maintain a mode state, action state, and record inputs. There’s only so many combinations of states and inputs we can do at any given time, and some vim plugins just can’t play together well without removing a standard movement or action. ¯\_(ツ)_/¯
That said, I do think abolish is possible to emulate (closely) in its entirety:
If I had more time!
@vegerot Generally because there’s only so much we can do in our free time. Pull requests are always welcome.