KO
|
EN
gitlite — search
Search
#javascript
#python
#react
#typescript
#html
#nodejs
#css
#reactjs
#mysql
#tailwindcss
#php
#mongodb
nvim-align
★ 49
Open GitHub ↗
Neovim plugin for aligning text
Download README (.md)
Explore Similar Repositories
proxmox
:
No description available.
earcutr
:
Port of MapBox's earcut triangulation code to Rust language
unidbg_api
:
脱离安卓手机调用第三方.so文件,集成了spring boot框架提供web服务 可打成jar包一键部署
AIOsp-Fault-Diagnosis
:
No description available.
mediapipeFacegeometryPython
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
nvim-align
?
Download (.md)
# nvim-align ## Usage ```vim " In visual mode :'<,'>Align regex_pattern.* ``` *Note:* If used in normal mode, the previous visual selection will be used. *Note:* See help docs for more information. ## Example Start text: ```text var x = 1 var xx = 2 var xxx = 3 var xxxx = 4 var xxxxx = 5 var xxxxxx = 6 ``` Command: ```vim :'<,'>Align = ``` Resulting text: ```text var x = 1 var xx = 2 var xxx = 3 var xxxx = 4 var xxxxx = 5 var xxxxxx = 6 ``` You can then operate on the same text again without highlighting it. For example: ```vim :Align x\s*= ``` Resulting in: ```text var x = 1 var x x = 2 var xx x = 3 var xxx x = 4 var xxxx x = 5 var xxxxxx = 6 ```