본문 바로가기
SW 프로그래밍/우분투

nano에디터를 편하게 사용하는법(NANORC)

by N2info 2023. 7. 13.

nano에디터를 편하게 사용하기 위해 NANORC를 수정하였다.

수정하기 위해 아래 명령어 실행

$ sudo nano /etc/nanorc

 

적용한 부분

#  자동 들여쓰기를 사용합니다.
## Automatically indent a newly created line to the same number of
## tabs and/or spaces as the preceding line -- or as the next line
## if the preceding line is the beginning of a paragraph.
set autoindent

#  항상 커서 위치의 라인 번호가 표시됩니다.
## Constantly display the cursor position in the status bar or mini>
set constantshow

#  검색/바꾸기 문자열을 저장하고 읽기 위해 ~/.nano/search_history를 사용할 수 있습니다.
## Remember the used search/replace strings for the next session.
set historylog

# 줄번호를 표시합니다.
## Display line numbers to the left (and any anchors in the margin).
set linenumbers

#  제목 표시줄을 표시하지 않고 파일 이름과 커서 위치 표시
## Suppress the title bar and show the filename plus a cursor-posit>
## percentage in the space of the status bar.
set minibar

#  편집 세션 사이에 파일의 커서 위치를 저장합니다.
## Remember the cursor position in each file for the next editing s>
set positionlog

#  전자 메일의 인용 문자 또는 소스 코드의 줄 주석 소개자와 일치하는 정규식입니다.
## The regular expression that matches quoting characters in email
## or line-comment introducers in source code.  The default is:
set quotestr "^([       ]*([!#%:;>|}]|//))+"

## Put the cursor on the highlighted item in the file browser, and
## show the cursor in the help viewer; useful for people who use a
## braille display and people with poor vision.
set showcursor

## Use the end of the title bar for some state flags: I = auto-inde>
## M = mark, L = hard-wrapping long lines, R = recording, S = soft->
set stateflags

적용후 

더 궁금한 사항은 아래 사이트 참조

https://www.nano-editor.org/dist/v2.5/nanorc.5.html

 

NANORC

M- followed by a printable character or the word "Space". Example: M-C

www.nano-editor.org