27 January 2004 1 comment Linux
This blog post is 19 years old! Most likely, its content is outdated. Especially if it's technical.
In the basic setup of jed when you press ALT-F
(i.e. Alt key at the same time as letter "f") it opens the File menu. I didn't want that. I wanted it to be like in Emacs where ALT-F
means skip-word
.
The README said to set ALT_CHAR = 27;
like this FAQ said. Well, that didn't work. After some more google searching I found out how to do it!:
() = evalfile("emacs"); % Emacs-like bindings
Now it works like I think it should. I write it here because I'll probably forget for the next time.
Jed is the editor I use the most when not working in a graphical environment. Almost all of the code to this website has been developed using jed.
- Previous:
- Passed my grading! 26 January 2004
- Next:
- Grep in Jed 27 January 2004
- Related by category:
- Linux tip: du --max-depth=1 27 September 2007 Linux
- How to create-react-app with Docker 17 November 2017 Linux
- Be very careful with your add_header in Nginx! You might make your site insecure 11 February 2018 Linux
- set -ex - The most useful bash trick of the year 31 August 2014 Linux
- Run something forever in bash until you want to stop it 13 February 2018 Linux
- Related by keyword:
- How to encrypt a file with Emacs on macOS (ccrypt) 29 January 2019
- Best Atom packages of 2015 22 January 2016
- Local jed settings 19 April 2013
- Wing IDE versus Jed 11 December 2008
- EditArea vs. CodePress 3 January 2008
You also need to comment out enable_menu_keys ()