Editors

Command Line Editors

Here are some good tutorials to popular command line editors that can be used through a text console. All of these can be installed on Raspbian (if they are not already installed).

vi
vim
" tabstop: Width of tab character
" softtabstop: Fine tunes the amount of white space to be added
" shiftwidth Determines the amount of whitespace to add in normal mode
" expandtab: When on uses space instead of tabs
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab


emacs
;; Only uses spaces, not tabs 
(setq-default indent-tabs-mode nil) 
(setq tab-width 4) 
(setq-default c-basic-offset 4)

ne

micro
Comments