목록change (5)
준호씨의 블로그
ctrl + b, : :move-window -t 99 Sometimes you may want to change tmux window's number. Because window tap is ordered by window numbers. You may want to move some windows to far away from other windows. Then change the window number. References https://superuser.com/questions/343572/how-do-i-reorder-tmux-windows
나도 예전에는 tab 파 였으나 언젠가 부터 space 파로 넘어 왔다. 기존 파일의 tab 들을 space 로 바꿔 주려면 다음과 같이 하면 된다. cmd + shift + a To Spaces
맥북 기본 설정에서 일반 키보드를 연결 했을 때 불편한 점 중 하나는 키가 몇가지 다르다는 것이다. 맥북의 키 순서는 fn, control, option, command 일반 키보드는 Ctrl (Control), Win, Alt 맥북의 키 순서에 익숙하다면 Win 키와 Alt 키의 위치를 바꾸는 것이 편리하다. System Preferences -> Keyboard 로 이동 한다. 아래쪽에 Modifier Keys 를 누른다. Select keyboard 를 누르면 USB 로 연결한 키보드도 볼 수 있다. 나의 키보드를 선택하도록 하자. 아래와 같이 일부 키를 바꿀 수 있는 설정을 제공하고 있다. Option 을 Command 로, Comand 를 Option 으로 바꾸면 끝
github 에서 commit 내역을 보면 가끔 indent 수정으로 인한 diff 결과가 보기 싫을 때가 있다. 예를 들면 아래와 같은 경우이다. https://github.com/junho85/git-study/commit/06baa82895093dba05c0674598068f3fb55455a0 사실 printf("nice to meet you\n"); 와 return 0; 는 공백만 변경 되었을 뿐 내용의 변화는 없다. #include int main() { - printf("nice to meet you\n"); - printf("hello world"); - return 0; + printf("good to meet you\n"); + printf("nice to meet you\n"); + p..