在Vim中更改大小寫

2021-10-08 09:33:34 字數 1240 閱讀 2520

本文翻譯自:changing case in vim

vim中是否有一條命令可以更改所選文字的大小寫?

參考:在vim中更改大小寫

visual select the text, thenufor uppercase orufor lowercase.視覺選擇文字,然後u表示大寫或u表示小寫。to swap all casing in a visual selection, press~.要交換外觀中的所有大小寫,請按~

without using a visual selection,guwill make the characters inmotionuppercase, or usegufor lowercase.不使用視覺選擇,gu將在字元motion大寫,或使用gu為小寫。

for more of these, see section 3 in vim's change.txt help file.有關更多資訊,請參見vim的change.txt幫助檔案中的第3節。

see the following methods:請參閱以下方法:

~    : changes the case of current character

guu : change current line from upper to lower.

guu : change current line from lower to upper.

guw : change to end of current word from upper to lower.

guaw : change all of current word to lower.

guw : change to end of current word from lower to upper.

guaw : change all of current word to upper.

g~~ : invert case to entire line

gug : change to lowercase until the end of document.

Mysql修改大小寫敏感

今天在centos6.5系統中,將mysql公升級到5.6版本,發現mysql資料庫和表名對大小寫敏感,列名對大小寫不敏感。原因是 在 mysql 中,資料庫和表對應於那些目錄下的目錄和檔案。因而,作業系統的敏感性決定資料庫和表命名的大小寫敏感。這就意味著資料庫和表名在 windows 中是大小寫不...

Keil output 大小寫更改

想要修改keil自動生成的output.hex名稱為output.hex,發現修改後,儲存,仍然會恢復成output.hex。keil版本v5.26.2.0 1 找到引數修改位置 name of executable 方法 options for target prjmy output 發現名稱為 ...

vim大小寫轉換

vim中大小寫轉化的命令是 gu或者gu 形象一點的解釋就是小u意味著轉為小寫 大u意味著轉為大寫.剩下的就是對這兩個命令的限定 限定操作的行,字母,單詞 等等 1 整篇文章大寫轉化為小寫 開啟檔案後,無須進入命令列模式。鍵入 gggug 解釋一下 gggug分作三段gg gu g gg 游標到檔案...