emmet-vim
emmet for vim: http://emmet.io/ (by mattn)
vim-surround
surround.vim: Delete/change/add parentheses/quotes/XML-tags/much more with ease (by tpope)
emmet-vim | vim-surround | |
---|---|---|
30 | 83 | |
6,451 | 13,666 | |
0.1% | 0.7% | |
4.5 | 0.0 | |
8 months ago | 9 months ago | |
Vim Script | Vim Script | |
MIT License | - |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
emmet-vim
Posts with mentions or reviews of emmet-vim.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-06-02.
-
newbie, wanna jump from inside one html tag to the inside of another as quickly as possible
If you're going to be doing a lot of HTML, I really love the emmet-vim plugin. In this case, it fills in a little more than you may have wanted ( tags get an automatic href="" attribute), but you can, for instance, put in (li>b)*2 (that is, two tags, each with a inside an
- Wrapping a range of lines in an html tag?
-
Using emmet plugin I can´t get a comment
If you're talking about this plugin, you don't need to be in visual mode, just type your abbreviation and press ctrl-y, like this:
- reactjs styled-components auto-completion
-
Emmet working in Nvim?
Does anyone have a link to their repository with emmet(https://github.com/mattn/emmet-vim) manually installed?
- What tools you use to write some simple html and css
-
Emmet does not seem to work
I installed emmet using packer.nvim. The plugin seemed to be installed correctly without any errors.
-
Frustrating beginning with Neovim
I tried emmet-vim, but it's only working in html files
-
Help me set up vim for linting and a file tree please and some other stuff
It sounds like vim-emmet would be right up your alley. If you don't use a Vim package manager, install it by git cloneing it into a folder named ~/.vim/pack/plugins/start/ on Unix/macOS or $HOME\vimfiles\pack\plugins\start on Windows (create it beforehand if it doesn't exist), then after you've :EmmetInstalled it into your buffer, you can use the , mapping after the ! to write the Emmet expansion for the HTML boilerplate; Emmet expansion is a very useful but quite complex feature and you can read more on it in [https://docs.emmet.io/](Emmet's documentation).
- Is there an any way to use emmet completion (e.g. df -> display: flex) inside of styled-components in tsx files in nvim?
vim-surround
Posts with mentions or reviews of vim-surround.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-03-21.
-
Difftastic, a structural diff tool that understands syntax
I don't know what exactly you mean by pasting around the second selection, but you can paste selections, registers or even files at specific lines with some vim-fu. If it's generic enough you could write a function or even keyboard shortcut if it's very simple.
I have set ",',(,[,{ in visual mode to cut the selection insert the pairs then paste it back as a very hacky solution, but it gets the job done. If you want something more advanced to add or change anything around the selection tpope has solved that with vim-surround[1].
[1]: https://github.com/tpope/vim-surround
- Surround.vim: Delete/change/add parentheses/quotes/XML-tags with ease (2022)
-
Macro usage of replace
ysw https://github.com/tpope/vim-surround basically i surround the word with " So basically i wanted to surround the first word in line qoutes and then replace the first occurence of = with : Example:
-
Wrapping a range of lines in an html tag?
vim-surround is likely the plugin answer.
-
Quick Text Shortcuts?
If you have Tim Pope's vim-surround plugin, you can also add this to your Vimrc:
-
How do you manually install plugins
If you don't want to leverage Vim's package feature or you want to put your plugins in some other place, add the folder of the plugin to your :h 'runtimepath'. For example, if you download Tim Pope's vim-surround at ~\Documents\vim-surround, you should add this to your Vim configuration:
-
How to select multiple lines which are a 'component' quickly?
I'm using the vim-surround plugin by tPope and I know I can do ysw to surround words with whatever tag i want, I also know about cst (Change surrounding tag). But I'm wondering if there is a quick and easy way to wrap components. Some components might have closing tag and some components might not.
-
Is there anything like "vim-surround" built-in?
Is there any similar plugin to https://github.com/tpope/vim-surround?
-
ShadowVim embeds Neovim inside Xcode
Vim plugins (without UI) work out of the box. Hello vim-surround, argtextobj.vim and whatnot.
-
Vim function to move following word into parentheses?
If you don't insist on staying in insert mode then you can use vim-surround, which is perfect for this: yse
What are some alternatives?
When comparing emmet-vim and vim-surround you can also consider the following projects:
nvim-lspconfig - Quickstart configs for Nvim LSP
tabout.nvim - tabout plugin for neovim
emmet-ls - Emmet support based on LSP.
Neovim-from-scratch - 📚 A Neovim config designed from scratch to be understandable
vim-react-snippets - Useful snippets for developing in React (Javascript and Typescript)
nvim-autopairs - autopairs for neovim written in lua