All Projects → kana → Vim Textobj Entire

kana / Vim Textobj Entire

Vim plugin: Text objects for entire buffer

Projects that are alternatives of or similar to Vim Textobj Entire

vim-hdl
Vim plugin to aid VHDL development (for LSP, see https://github.com/suoto/hdl_checker)
Stars: ✭ 59 (-81.03%)
Mutual labels:  vim-plugins
go-vim-install
Easy environment setup for Vim addicts and go developers
Stars: ✭ 68 (-78.14%)
Mutual labels:  vim-plugins
vim-js-file-import
Import/require files in javascript and typescript with single button!
Stars: ✭ 130 (-58.2%)
Mutual labels:  vim-plugins
vim-find-files
🔎 Search for files and show results in a quickfix list, new buffer, or populate the argument list.
Stars: ✭ 25 (-91.96%)
Mutual labels:  vim-plugins
vim-mix
Vim plugin for using Elixir's build tool, mix
Stars: ✭ 63 (-79.74%)
Mutual labels:  vim-plugins
VimConfig
Configuration files for Vi-IMproved.
Stars: ✭ 23 (-92.6%)
Mutual labels:  vim-plugins
nv-ide
Neovim custom configuration, oriented for full stack developers (rails, ruby, php, html, css, SCSS, javascript)
Stars: ✭ 363 (+16.72%)
Mutual labels:  vim-plugins
vim-hclfmt
Vim plugin for hclfmt
Stars: ✭ 68 (-78.14%)
Mutual labels:  vim-plugins
vim-mypy
Vim plugin for executing Python's optional static type checker MyPy (http://mypy-lang.org/)
Stars: ✭ 89 (-71.38%)
Mutual labels:  vim-plugins
vim-tmuxlike
A vim plugin that mimics the actions of tmux. 像操作Tmux一样操作Vim
Stars: ✭ 20 (-93.57%)
Mutual labels:  vim-plugins
neomake-multiprocess
A vim plugin for running multiple process asynchronously base on neomake.
Stars: ✭ 36 (-88.42%)
Mutual labels:  vim-plugins
quicktex
A vim plugin for writing Latex quickly.
Stars: ✭ 110 (-64.63%)
Mutual labels:  vim-plugins
vim-bettergrep
A better way to grep in vim.
Stars: ✭ 15 (-95.18%)
Mutual labels:  vim-plugins
dotfiles
NeoVim + git + zsh + tmux bliss
Stars: ✭ 19 (-93.89%)
Mutual labels:  vim-plugins
bufstop
Fast and efficient buffer switching for Vim
Stars: ✭ 82 (-73.63%)
Mutual labels:  vim-plugins
alternate-lite
a.vim rewriting
Stars: ✭ 21 (-93.25%)
Mutual labels:  vim-plugins
vim-inccomplete
Vim plugin for #include directive completion.
Stars: ✭ 14 (-95.5%)
Mutual labels:  vim-plugins
vim-hugo-helper
A small Vim plugin with a set of helpers for Hugo https://gohugo.io
Stars: ✭ 82 (-73.63%)
Mutual labels:  vim-plugins
VimFold4C
Vim folding ftplugin for C & C++ (and similar langages)
Stars: ✭ 37 (-88.1%)
Mutual labels:  vim-plugins
vim-sequence-diagram
A Vim plugin for previewing sequence diagram in a browser
Stars: ✭ 53 (-82.96%)
Mutual labels:  vim-plugins

vim-textobj-entire - Text objects for entire buffers

Build Status

vim-textobj-entire is a Vim plugin to provide text objects (ae and ie by default) to select the entire content of a buffer. Though these are trivial operations (e.g. ggVG), text object versions are more handy, because you do not have to be conscious of the cursor position (e.g. vae).

vim-textobj-entire provides two text objects:

  • ae targets the entire content of the current buffer.
  • ie is similar to ae, but ie does not include leading and trailing empty lines. ie is handy for some situations. For example,
    1. Paste some text into a new buffer (<C-w>n"*P) -- note that the initial empty line is left as the last line.
    2. Edit the text (:%s/foo/bar/g etc)
    3. Then copy the resulting text to another application ("*yie)

See also the reference manual for more details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].