Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- openmp
- SSH
- tab space
- mpi4py
- MAC
- datascience
- GSL
- intel compiler
- cygwin
- h5py
- gfortran
- hyperref
- conda
- Anaconda
- cython
- HDF5
- Visual Studio
- Windows
- vim
- portforwarding
- virtual
- Matplotlib
- LaTeX
- python
- vi
- HFS+
- jupyter
- c++
- arXiver
- polyglot
Archives
- Today
- Total
Astro Coke
[Vi] set-up case-sensitivity in searching 본문
in .vimrc, you can add the commands for the case-sensitivity
:set ignorecase
:set smartcase
Then, you can search words with some case sensitivity rules below:
/copyright -> Case insensitive
/Copyright -> Case sensitive
/copyright\C -> Case sensitive
/Copyright\c -> Case insensitive
\c or \C at the end of the word is the explicity commands for the sensitivity.
:help /\c
:help /\C
:help 'smartcase'
'Computer Setup' 카테고리의 다른 글
[arXiver] Figure select for the arXiver (0) | 2019.11.03 |
---|---|
[Vi] Huge delay when copying & pasting contents in folded texts (0) | 2019.09.13 |
[Jekyll] nstall nokogiri problem: resolution with MacPorts (0) | 2019.08.02 |
[Git] Merge Conflicts (0) | 2019.07.17 |
[Conda] Install packages through anaconda (0) | 2019.07.12 |