[Elsip] 이맥스 Emacs/WSL2에서 현재 단어에 다음사전 열기

개인 공책|2020년 10월 17일
Posts

[Elsip] 이맥스 Emacs/WSL2에서 현재 단어에 다음사전 열기

개인 공책|2020년 10월 17일

Emacs / WSL2 현재 커서가 있는 위치의 단어를 다음사전에서 검색하는 함수 (defun dict-at-point () "Search word at point in Daum Dictionary" (interactive) (shell-command (concat "cmd.exe /c start \"\" \"https://dic.daum.net/search.do?q=" (thing-at-point 'word) "\""))) Emacs / WSL2 에서 WSL/INTEROP ISUEE 해결(https://medium.com/@elecming/the-ultimate-emacs-hacking-tutorial-in-windows-10-wsl-2-2fc4e9a

Related Posts

3 posts

Emacs tramp for termux ssh

개인 공책|2022년 5월 3일

When you use tramp for a file in termux over ssh, you would get this error. File error: Couldn't find a proper `ls' command or tramp-error: Couldn't find a proper `ls' command To solve this, add termux's paths to tramp tramp-remote-path in your emacs init file. (setq tramp-remote-path (delete-dups (append '(tramp-own-remote-path) '(tramp-default-remote-path)

abcde로 cd-rom ripping

개인 공책|2019년 10월 3일

리눅스 콘솔에서 abcde로 audio cd를 flac으로 리핑 abcde config file : ~/.abcde 핵심 설정ACTIONS=cddb,read,encode,tag,move,clean,embedalbumartCDROM=/dev/sr1OUTPUTTYPE=flac 명령어$ abcde -o flac:-8

ffmpeg으로 CD ripping / wav to ogg converting

개인 공책|2019년 6월 6일

ls "Your Directory"/*.wav | parallel v={}\; ffmpeg -i '{}' -c:a libopus -vbr on -b:128k '${v/.wav/.ogg}'