dircolors를 사용하여 Subversion 폴더의 색상을 변경하는 방법

dircolors를 사용하여 Subversion 폴더의 색상을 변경하는 방법

아래는 내 dircolors 파일의 예입니다. Subversion 폴더(.svn)에 색상을 지정하고 싶지만 확장자 부분은 파일 이름에만 적용되는 것 같습니다.

특정 이름을 가진 디렉토리의 색상을 설정하는 방법은 무엇입니까?

NORMAL 00   # global default, although everything should be something.
FILE   00   # normal file
DIR    35   # directory
LINK   01;36    # symbolic link
FIFO   40;33    # pipe
SOCK   01;35    # socket
BLK    40;33;01 # block device driver
CHR    40;33;01 # character device driver

# This is for files with execute permission:
EXEC 01;32

# List any file extensions like '.gz' or '.tar' that you would like ls
# to colorize below. Put the extension, a space, and the color init string.
# (and any comments you want to add after a '#')
*~    01;33;41 # stuff we hate to find laying around (flashing red)
.svn  37
.cmd  01;32 # executables (bright green)
.exe  01;32
.com  01;32
.btm  01;32

답변1

나는 방법을 찾았습니다:

diff --git a/src/ls.c b/src/ls.c
index 680a7c3..d316eb6 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -4226,7 +4226,7 @@ print_color_indicator (const struct fileinfo *f, bool symlink_target)

   /* Check the file's suffix only if still classified as C_FILE.  */
   ext = NULL;
-  if (type == C_FILE)
+  if (type == C_FILE || type == C_DIR)
     {
       /* Test if NAME has a recognized suffix.  */

여기에 이미지 설명을 입력하세요.

관련 정보