====== vim ======
===== Suche Hervorheben hlsearch =====
map :set hls!set hls?
map :set paste!set paste?
map :set wrap!set wrap?
===== Scrollen Zeile bleibt stehen =====
:set scrolloff=10
:set scrolloff=0
:set scrolloff=999
===== Suchen =====
https://vim.fandom.com/wiki/Searching
When ''ignorecase'' and ''smartcase'' are both on, if a pattern contains an uppercase letter, it is case sensitive, otherwise, it is not. For example, ''/The'' would find only "The", while ''/the'' would find "the" or "The" etc.
The ''smartcase'' option only applies to search patterns that you type; it does not apply to ''*'' or ''#'' or ''gd''. If you press ''*'' to search for a word, you can make ''smartcase'' apply by pressing ''/'' then up arrow then Enter (to repeat the search from history).