Releases: micro-editor/micro
Release list
1.4.1
Release v1.4.1: a long overdue release.
- New syntax for opening files at a specific line
micro file.txt:line:col
- New
hidehelpoption - Fix for "text file busy"
- Fix for "terminal entry not found" without need for mkinfo
Ctrl-Xacts likeCtrl-kwhen nothing is selected- Many small bug fixes and optimizations
1.4.0
Release v1.4.0
- Terminal emulator within micro
- Use the
termcommand to open a shell - Use
term ...to start the emulator with a custom process - Only supported on MacOS, Linux, OpenBSD, FreeBSD, Dragonfly
- Lua system for interfacing with the emulator as well
- Use the
- Brace highlighting
- Use the
matchbraceoption (off by default)
- Use the
- New
JumpToMatchingBraceaction - New
rawcommand- Using this command will show all escape sequences micro is using
- Useful for debugging
- New
showkeycommand- See what action a key is bound to
- ReplaceMode (bound to insert key by default)
- Bind keys to actions
- Use
command:...as an action to bind a command - Use
command-edit:...as an action to bind a command prompt
- Use
- Optimization for saving large files
- New
basenameoption for the path shown in the status bar - New
railscastcolorscheme - New
SelectLineaction - Support
line:colsyntax inJumpLine - Prompt to create parent folders if they don't exist when saving
- Syntax highlighting improvements
- Javascript
- Git-commit
- Julia
- Lua
- Makefile
- Bug fixes
1.3.4
Micro version 1.3.4.
See the readme for installation instructions.
This release fixes some bugs and makes a number of small improvements.
- New
scrollbaroption (off by default)- Does not have mouse support
- New
savehistoryoption (on by default)- Micro will remember your command bar history between
sessions (after closing and re-opening the editor)
- Micro will remember your command bar history between
- Nano-like menu for showing the keybindings
- Use
Alt-gto enable - Displayed in the statusline
- Use
- Paragraph movement
- Use
Alt-{andAlt-}
- Use
- Support for binding raw escape sequences
- Some key events are not sent by terminals by default
but they can be configured to send custom escape sequences.
This feature lets you configure micro to receive custom
escape sequences and bind them to an action.
- Some key events are not sent by terminals by default
retabcommand will convert tabs to spaces or vice versa depending on
yourtabstospacessettingreplacecommand now accepts the-lflag for 'literal'- It will treat the search term literally instead of as a regex
- Command bar improvements
- Environment variables are supported in the command bar
- Shell commands will also be expanded in the command bar using backticks
- Better keybindings
- CtrlA, CtrlLeft: start of line
- CtrlE, CtrlRight: end of line
- CtrlF, AltRight: next word
- CtrlB, AltLeft: previous word
- CtrlW, AltBackspace: delete previous word
- CtrlV: Paste
- Arrow keys as usual
- Some settings have been renamed for consistency
splitRight->splitrightsplitBottom->splitbottom
sucmdoption for customizing "save with sudo" (some systems use a different command fromsudo).- Colorschemes and syntax improvements
- New
twilightcolorscheme - Matlab/Octave syntax support
- Lua, Javascript, Scala, Fish etc... syntax improvements
- New
- Minor change to the behavior of search
- Should match the behavior from Vim/Emacs better
1.3.3
Micro version 1.3.3
This release fixes some bugs and makes small improvements.
- Autocompletion for colorschemes and all options more generally
- Only register double/triple clicks if the mouse is in the same location
- Added an option for accurate but inefficient checking if the buffer is modified
- Set
fastdirtyoption tooff(onby default)
- Set
- Fixed some home directory replacements
- Fixed some command line flags
- Fixed behavior for large pastes
1.3.2
Micro version 1.3.2.
This release contains mostly bug fixes. The only interesting new features are support for crlf/lf (unix vs dos) line endings and access to the Go standard library for Lua plugins.
- Add support for crlf and lf
- Lua now has access to most of the Go standard library
- Simply import go packages:
local fmt = import("fmt")
- Simply import go packages:
- Syntax highlighting
- Julia support
- Improved yaml highlighting
- Bug fixes for multiple cursors
- Bug fixes for undo/redo
- Add a new --config-dir option to set a custom location for the configuration directory
1.3.1
This is a small release to fix some of the issues from 1.3.0.
Changelog:
- Add support for the
Suspendaction for OSX and BSDs (still supported on Linux as well) - Multiple cursors merge if you spawn multiple with the mouse in the same place
- Fixes to tcell and pasting
- Micro won't write your settings if there was an error when loading
settings.json.
1.3.0
Micro version 1.3.0
The largest change in this version is the new multiple cursor support.
Changelog:
- Dependencies distributed as submodules
- Multiple cursors
- New actions that can be bound:
SpawnMultiCursordefault binding:Alt-nRemoveMultiCursordefault binding:Alt-pRemoveAllMultiCursorsdefault binding:Alt-cSkipMultiCursordefault binding:Alt-xMouseMultiCursordefault binding (can only be bound to mouse buttons):Ctrl-MouseLeft
- New actions that can be bound:
- Expanded keybinding support
- Mouse buttons can be bound
MouseLeftMouseRightMouseMiddleMouseWheelUpMouseWheelDownMouseWheelLeftMouseWheelRight
- Characters can be bound
- Support for CtrlPgUp and CtrlPgDown
- Mouse buttons can be bound
- Various syntax highlighting improvements
- Vala improvements
- C improvements
- New Twig syntax
- New Darcula colorscheme
- Improved search and replace
- Default now will ask for each replacement
- Use
-aflag to replace all
- No more 1/10th second delay when quitting and using alt keys
- Bug fixes
A lot changed under the hood with this version so there may be more bugs I'm not aware of. Please report them if you find any!
1.2.0
Micro version 1.2.0.
There have been a ton of commits since the last release.
The biggest change in this version is the new syntax highlighting engine (see below).
Hopefully everything goes well! Please report any bugs you might find.
- Complete refactor and overhaul of the syntax highlighting engine
- Syntax files now use the
yamlformat- The old format is no longer supported but you can convert
old syntax files to the new format by using thesyntax_converter.go
program in theruntime/syntaxfolder
- The old format is no longer supported but you can convert
- New support for syntax "regions"
- Support for embedding languages in each other
- Highlighting should be much more accurate (especially for large files)
- All syntax files (the obscure languages) now support colorschemes
- Many new languages/improvements to old syntax files
- Kotlin
- C++
- R
- Go
- Nim
- Swift
- and more...
- Syntax files now use the
- Tab scrolling
termtitleoption: when enabled, micro will set the terminal's titleSaveAllaction to save all buffers at onceSuspendaction (Linux only) which can be bound toCtrlZ- Various bugs with resizing, search, prompts and more have been fixed
- Unicode support for autoclose plugin
tabswitchcommand to change tabs without using the mouse- Snap installation
- More default bindings
- More efficient search and replace
- View refactor
- Under the hood improvements
- Support for Literate
1.1.4
Micro version 1.1.4
Changelog:
- New
rmtrailingwsoption (off by default) - New
keepautoindentoption (off by default) - New linters
- Nim
- Objective-C
- Improved syntax files
- toml
- Go
- Nim
- Solidity
- Pony
- Pascal
- PHP
- Micro
- Plugin API
- JobStart uses shell to parse
- JobSpawn should be used for direct executable invocation
- Improved key unbinding
- Bug fixes
- Opening a directory doesn't crash
- Minor mouse clicking bug
- and more
1.1.3
Micro version 1.1.3
Changelog:
- Plugin API
plugin availablecommand to show which plugins can be installedByteOffsetandToCharPosfunctions addedJobSpawn: likeJobStartbut takes arguments separatelytab.CurViewis now public
- New default
ftoptionsplugin to automatically set options for some filetypes (e.g.tabstospacesoff for makefiles) - It is possible to resize splits via lua scripting
cdandpwdcommands to manage the working directoryopencommand added and bound toCtrlO- Splits can be created either way with
splitRightandsplitBottomcommands - Syntax files
- Crystal language
- TeX updated to use colorschemes
- Pony language
- VHDL
- Objective C
- Python 3 (separate from Python 2)
- File reading optimization
And many bug fixes as well