|
|
|
|
|
by chrisgw
4074 days ago
|
|
":" runs Emacs functions. Some commands from Vim have been added, but not all of them. If a function with the same name as a Vim command already exists in Emacs, it's not replaced. I'd imagine replacing the default Emacs functions could break things in weird ways. :cd runs the Emacs cd function which behaves differently than Vim's :cd. To get the equivalent of :tabnew, you'd have to use :buffer [name] and give the new buffer (Emacs's equivalent of tabs) a name. |
|