콘솔을 통해 편집기 XED의 마지막 커서 위치를 무시하는 방법은 무엇입니까?
우리 모두 알고 있듯이 다음과 같은 방법으로 유사한 결과를 얻을 수 있습니다.
XED, 검색 기록 삭제:
gsettings reset org.x.editor.state.history-entry history-search-for
XED, 교체 기록 삭제:
gsettings reset org.x.editor.state.history-entry history-replace-with
오해를 피하기 위해 구체적으로 작성하십시오.
우리가 터미널을 찾고 있는 코드는 마지막 커서 위치를 무시하지만 영구적으로 비활성화하지는 않는 것입니다.
답변1
restore-cursor-position
비활성화할 수 있습니다.
gsettings set org.x.editor.preferences.editor restore-cursor-position false
이는 영구적입니다. 임시 해결책을 원한다면 as 옵션과 문제의 파일 이름을 xed
사용 하여 호출할 수 있습니다.+1
xed +1 infile
그러면 infile
커서가 열리고 파일 시작 부분에 위치하게 됩니다.
데스크탑 런처와 함께 사용하려면 다음과 같이 작동해야 합니다.
Exec=xed +1 %u
좋습니다. 또 다른 방법은 대체 구성 dconf
파일을 사용하는 것입니다. 키를 로 설정하고 false
구성 파일을 다른 디렉터리에 저장한 다음 키를 다시 설정합니다 true
. 커서 위치를 무시하려면 저장된 프로필을 로드하고, 그렇지 않으면 xed
정상적으로 실행됩니다. 달리기
mkdir -p ~/.alt_xed/dconf/
gsettings reset org.x.editor.state.history-entry history-search-for
gsettings reset org.x.editor.state.history-entry history-replace-with
gsettings set org.x.editor.preferences.editor restore-cursor-position false
cp ~/.config/dconf/user ~/.alt_xed/dconf
gsettings set org.x.editor.preferences.editor restore-cursor-position true
그런 다음 다음 명령을 사용하여 편집기를 시작하면 파일의 첫 번째 줄에 커서가 있는 모든 파일이 열립니다.
XDG_CONFIG_HOME=~/.alt_xed xed