I was discussing with a tamil writer, on his explorations of a good text editor.
As he is a lover of plaintext, his requirements are interesting to me.
We concluded that the below are the good requirements.
-
Fullscreen editor
The text editor should open in fullscreen modealways. No need of Top menu, side menu etc. -
Word Count
Count of total words should be displayed in bottom or can be shown on any menu click action.
Real time display is good. but not necessary.Wondered to see many text editors are counting the Tamil language words wrongly.
Few text editors dont have that feature to count the words. -
dark mode
A dark back ground and bright color for text is essential -
No additional colors
Many text editors like vscode, show the text in different colors based on the syntax,
which is unncessary. -
No syntax hightlighting
no need to show the symbols, syntax in different colors -
show the linenumbers.
showing linenumbers is good. but not essential. -
OS
should be available for all computer operating systems like GNU/Linux, Mac and Windows -
Cost
Should be free -
Configurable
Good to have more configurable possibilities. -
font/size
Default font and size should be confifurable.
Based on these requirements, I did an analysis of various text editors.
Will give detailed analysis for all text editors later.
I hope, emacs can be a perfect for all these requirements.
I need the below features in Emacs.
- open emacs in fullscreeen by default
- Open in writeroom-mode by default
- if possible, show the word count in the mode line, in the writeroom mode.
if mode line is not possible in write room mode, add a menu item to get the words count - if possible show line numbers or give menu item for it.
- Load the theme “tango-dark” by default.
- Set the normal short keys for the below operations.
(cua-mode t)
(delete-selection-mode t)
(global-set-key (kbd "<left>") 'backward-char)
(global-set-key (kbd "<right>") 'forward-char)
(global-set-key (kbd "<up>") 'previous-line)
(global-set-key (kbd "<down>") 'next-line)
(global-set-key (kbd "C-f") 'isearch-forward)
(global-set-key (kbd "C-r") 'query-replace)
(global-set-key (kbd "C-S-h") 'query-replace-regexp)
(global-set-key (kbd "C-s") 'save-buffer)
(global-set-key (kbd "C-a") 'mark-whole-buffer)
By setting the above in emacs config file, we can get
Open = Ctrl + O
Cut = Ctrl + x
Copy = Ctrl + c
Paste = Ctrl + v
Undo = Ctrl + z
But, the File menu, shows the default keys of emacs only.
Need to edit the short keys shown on the file menu too, so that it will be in sync.
Please help to set all these for emacs.
here is the my emacs config I am trying to achieve all these.