Text editor for assembly

Now I am developing an assembly for Linux, but I like to develop an editor that has syntax highlighting. Then I want to know what is best for Assembly (with syntax highlighting).

+7
assembly linux editor text-editor syntax-highlighting
source share
4 answers

Vim is my preferred editor. It supports syntax highlighting of assembly code, and if you don't like the default value, you can always change it.

See also this SO question for more information on Vim assembly syntax highlighting.

+8
source share

Nano offers syntax highlighting for builds and most other popular languages, and has a fairly simple and easy to learn interface.

+6
source share

emacs , the operating system in the editor.

The kitchen sink is on and flaming on the fly.

+6
source share

If you do not want to go with the console editor, then I have 3 recommendations.

  • Code :: Blocks
  • Kate
  • SciTE.
+2
source share

All Articles