เช่นเดียวกับการใช้ emacs กับผงสำหรับอุดรู ฉันเพิ่งถ่ายโอนไปยัง Ubuntu จาก windows
เช่นเดียวกับการใช้ emacs กับผงสำหรับอุดรู ฉันเพิ่งถ่ายโอนไปยัง Ubuntu จาก windows
คำตอบ:
ในการใช้ emacs ใน Terminal โดยไม่ต้องใช้ GUI (นั่นคือไม่มีการสร้างหน้าต่างกราฟิกสำหรับตัวเอง) ให้ใช้:
emacs -nw
-nw
ธงย่อมาจาก "หน้าต่าง no."
emacs บรรทัดคำสั่งถูกติดตั้งพร้อมกับ GUI หากต้องการเรียกใช้ให้ใช้ตัวเลือก -nw คำอธิบายจากมนุษย์ emacs:
-nw, --no-window-system
Tell Emacs not to use its special interface to X. If you use
this switch when invoking Emacs from an xterm(1) window, display
is done in that window.
ดังนั้นให้เรียกใช้คำสั่งต่อไปนี้เพื่อใช้ emacs จาก command-line:
emacs -nw
หากคุณไม่ต้องการพิมพ์emacs -nw
คุณสามารถสร้างนามแฝงได้ ใส่บรรทัดต่อไปนี้ในของคุณ~/.bashrc
หรือ~/.bash_aliases
:
alias emacs="emacs -nw"
คุณสามารถเพิ่มนามแฝงนี้ในหนึ่งบรรทัดโดยใช้ I / O Redirection:
echo alias emacs="emacs -nw" >> ~/.bashrc