美媒称2030年中国将拥有超级航母 隐形战机上舰
Search type | Search syntax |
---|---|
Tags | [tag] |
Exact | "words here" |
Author |
user:1234 user:me (yours) |
Score |
score:3 (3+) score:0 (none) |
Answers |
answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
Views | views:250 |
Code | code:"if (foo != bar)" |
Sections |
title:apples body:"apples oranges" |
URL | url:"*.example.com" |
Saves | in:saves |
Status |
closed:yes duplicate:no migrated:no wiki:no |
Types |
is:question is:answer |
Exclude |
-[tag] -apples |
For more details on advanced search visit our help page |
Results tagged with original-vim
Search options answers only
not deleted
user 13728
百度 长江主轴资料图 实现伟大城市梦想 要一张蓝图干到底 以长江新城为抓手,努力打造国家中心城市和世界亮点城市,加快建设现代化、国际化、生态化大武汉,全面复兴大武汉,是武汉的伟大城市梦想。
Questions specific to Vi IMproved written by Bram Moolenar et al. Use this tag for features not found in other Vi-like editors or for comparison of features.
6
votes
Sorting superscript numbers
You can sort these symbols properly by using collation locale sort (modifier l):
:%sort l
For this to work, you need to have language collate setting set properly, for example:
:language collate en_U …
3
votes
Accepted
Macro "oend^[Ores^[" results in new line "end2es". How?
When vim encounters ^[Or it interprets it as some kind of special key, for instance a function key. Which specific one vim thinks it is I'm not sure, but for comparison the <f3> key is often ^[OR. T …