vim-easy-align
vim-easy-align copied to clipboard
:sunflower: A Vim alignment plugin
Hi, I've been looking around the docs but could not find a way to do this. Say I have a nested javascript object, such as this: ``` var collection =...
Hi, One feature I miss coming from Tabular is the auto generated range. The idea is to call EasyAlign on a line containing our pattern and from there find all...
I opened godlygeek/tabular#38 before discovering this project, but I think the same issue applies. Any thoughts?
# How to reproduce: 1. Starting with a clean installation + vim-plug. 2. `.config/nvim/init.vim`: call plug#begin('~/.local/share/nvim/plugged') Plug 'junegunn/vim-easy-align' Plug 'parsonsmatt/intero-neovim' call plug#end() nmap ga (EasyAlign) 3. `:PlugInstall` 4. Open a...
In bitbake use = .= =. := += =+ ?= ??= to assign value to vars. for = .= := += ?= ??= works OK but for =. =+ add...
Is there a way to set `left_margin = 2` just for python comment at the end of lines? If I set `left_margin = 2` then it will affect all other...
The implementation of syntax group support in EasyAlign is not very advanced and does not work in some cases. Here I must digress for a moment and recommend the [SynGroup](https://stackoverflow.com/questions/9464844/how-to-get-group-name-of-highlighting-under-cursor-in-vim)...
Hi, the EasyAlign plugin saves me a lot of manual 'spaces' when creating tables. However, what can I do to correctly align the following table: ~~~ +-------------+----------------+--------------------------+-------------------+--------------------------+ | **Crop/** |...
With the following table in markdown: ``` ## 窗口与跳转 | 快捷键| 原指令 | 描述 | -----| ----- | ---- | | CTRL-O或CTRL-I | 返回光标上一个/下一个所在位置 |;n| :NERDTreeToggle | 打开目录 | |...
This is not really an issue, but rather a function that I wrote to mimic [this](https://gist.github.com/tpope/287147) but by using this plugin. ```vim vim9script export def Align() const p = '^\s*|\s*.*\s*|\s*$'...