我想删除一段文本中的一些空格。我可以插入空格或字符,但似乎无法删除。
我尝试的步骤:
Control + V
进入块模式- 按向上或向下键选择要编辑的行
- 按
Shift + i
(I) 进入大写插入模式 - 对块的顶行进行我想要的更改
- 按转义键
我制作了一个屏幕截图,显示我首先成功地跨块插入一个空格,然后未能删除跨块的空格。MP4文件(如果有更合适的地方可以上传此内容,请告诉我)。
如何删除一个块中的一些空格?下的所有内容steps
,我要删除两个空格。我怎样才能做到这一点?
send-pg:
runs-on: ubuntu-latest
name: send data to postgres
steps:
- name: checkout current repo
uses: actions/checkout@v2 # Defaults to current repo - check out current repo
- name: Retreive data from ssql job
uses: actions/download-artifact@v2
with:
name: marketing-data
path: ga-files
- name: Check csv file is there and export matrix game for Rscript
run: |
ls -l
ls -l ga-files
答案1
如果你的 .vimrc 中有这个:
set nostartofline " keep cursor on the same column even when no chars are there
ctrl + v
然后,您可以突出显示连字符之前的列(带有),然后点击x
将其删除。