2017-12-04 12 views
2

git rebase -i을 실행하면 정규 todo 목록 (모든 repos, 모든 편집기) 바로 다음에 표시되는 ansi 색상 코드를 얻었습니까?`git rebase -i`는 편집기에서 ansi 색상 코드를 보여줍니다.

  • 자식 버전은 2.13와 2.15을 시도하고 나는
  • color.ui & color.interactive
  • 이 거짓 테스트 내 사용자 설정을 핵 공격. 자식 설정에서
  • 시도 정력, 나노, subl 및 ed (core.editor), 모든

감사합니다이 문제를 가지고있다.

pick 5c0cbe059d56e2fe2bac4bf9e3373d5882157f4a commit 
[38;5;252m# Rebase b4c6863..5c0cbe0 onto b4c6863 (1 command)[39m 
# 
# Commands: 
# p, pick = use commit 
# r, reword = use commit, but edit the commit message 
# e, edit = use commit, but stop for amending 
# s, squash = use commit, but meld into previous commit 
# f, fixup = like "squash", but discard this commit's log message 
# x, exec = run command (the rest of the line) using shell 
# d, drop = remove commit 
# 
# These lines can be re-ordered; they are executed from top to bottom. 
# 
# If you remove a line here THAT COMMIT WILL BE LOST. 
# 
# However, if you remove everything, the rebase will be aborted. 
# 
# Note that empty commits are commented out 
+0

힘내는 어떤 편집기를 사용합니까? –

+0

그게 정력이야, 나도 나노를 시도 했어, 똑같은 문제 야. 그래서 나는 @AndrewMarshall을 사용하고있는 편집기가 아닌 것 같아. –

+0

'~/.vimrc'에'syntax off '를 추가 해보지 만 좋은 해결책은 아니다. vim의 구문 색상이 제대로 작동하지 않는 것 같습니다. – ElpieKay

답변

1

OK, 나는 내 $PATH에서 사용자 지정 cat을 생성하기 때문에 이런 일이 발생,이 문제를 해결하기 위해 관리, 그 내용은 다음과 같습니다이 구문의 하이라이트 pygmentize 사용 기본적으로

#!/bin/bash 

if [[ ! -f $(which pygmentize) ]] ; then 
    # if pygmentize not installed, use raw cat 
    /bin/cat [email protected] 
else 
    # pip install --user Pygments 
    # html output: pygmentize -f html -O full,style=vim 
    pygmentize -O style=native -f console256 -g [email protected]; 
fi 

, 나는 git는 추측 따라서 cat을 사용하여 rebase todo 목록을 생성하므로 내 사용자 정의 cat은 git 출력을 오염시킵니다.

수정하려면 맞춤 cat의 이름을 다른 것으로 바꾸기 만하면됩니다.