summaryrefslogtreecommitdiff
path: root/editors/micro
AgeCommit message (Collapse)AuthorFilesLines
2022-12-08Revbump all Go packages after go119 security updatebsiegert1-1/+2
2022-11-03editors/micro: Update to 2.0.11sjmulder3-142/+120
Changes: - Support for clipboard in WSL via clip.exe. - New hlsearch option to highlight search results. - Fixes for OSC52 clipboard support. - Syntax highlighting fixes, improvements, and new languages. - Rust clippy and go vet linters. - Switch to using go embed instead of go-bindata. - Bug fixes.
2022-11-02Revbump all Go packages after go119 security updatebsiegert1-2/+2
2022-10-05Revbump all Go packages after go119 security updatebsiegert1-2/+2
2022-09-26Revbump all Go packages after 1.19 became defaultbsiegert1-2/+2
2022-09-07Revbump all Go packages after go118 security updatebsiegert1-2/+2
2022-08-12Revbump all Go packages after go118 security updatebsiegert1-2/+2
2022-07-13Revbump all Go packages after go118 updatebsiegert1-2/+2
2022-06-02Revbump all Go packages after go118 updatebsiegert1-2/+2
2022-05-11Revbump all Go packages after go118 updatebsiegert1-2/+2
2022-04-13Revbump all Go packages after go117 updatebsiegert1-2/+2
2022-03-07Revbump all Go packages after go117 updatebsiegert1-2/+2
2022-02-13Revump all Go packages after go117 updatebsiegert1-2/+2
2022-01-09Revbump all Go packages after go117 updatebsiegert1-2/+2
2021-12-09Revbump all Go packages after go117 updatebsiegert1-2/+2
2021-11-05Revbump all Go packages after go117 updatebsiegert1-2/+2
2021-10-26editors: Replace RMD160 checksums with BLAKE2s checksumsnia1-88/+88
All checksums have been double-checked against existing RMD160 and SHA512 hashes
2021-10-08Revbump all Go packages after go117 updatebsiegert1-2/+2
2021-10-07editors: Remove SHA1 hashes for distfilesnia1-88/+1
2021-09-17Revbump all Go packages after go117 updatebsiegert1-2/+2
2021-08-11Revbump all Go packages after go116 updatebsiegert1-1/+2
2021-08-07editors/micro: Update to 2.0.10sjmulder2-27/+27
- Bug fixes - Opening a readonly file now only causes a warning - Bracketed paste fix - Terminal title fix - Allow opting out of loading a backup file - Default binding of Alt-Shift-f (Alt-F) for FindLiteral - Find will prefill with selected text - Syntax highlighting improvements (for nix, racket, v, rust, cpp, erlang, nim) - Minor documentation improvements - Shellcheck linter support
2021-08-06editors/micro: Update to 2.0.9sjmulder2-28/+37
Changes: - Softwrap improvements (thanks to @dmaluka). - New 'wordwrap' option. - Several bug fixes and improvements to navigation. - Small bug fixes.
2021-07-13Revbump all Go packages after go116 updatebsiegert1-2/+2
2021-06-06Revbump all Go packages after go116 updatebsiegert1-2/+2
2021-05-08Revbump all Go packages after go116 updatebsiegert1-2/+2
2021-03-19Revbump all Go packages after go115 updatebsiegert1-2/+2
2021-01-23Revbump all Go packages after go115 updatebsiegert1-1/+2
2021-01-11editors/micro: Update to 2.0.8sjmulder2-18/+17
Upstream notes: small release which fixes some terminal-related problems present in v2.0.7. Terminfo fixes - Mouse mode in alacritty and konsole fixed. - Modifier key detection for dynamic terminals fixed. - Background color in terminal emulator fixed. Syntax highlighting improvements - C++, Crystal, Groovy, Coffeescript. - Parentheses no longer highlighted in default theme (makes the colors less jarring and more consistent with other themes).
2020-11-13Revbump all Go packages after go115 updatebsiegert1-2/+2
2020-11-08Revbump all Go packages after Go 1.15 update.bsiegert1-1/+2
2020-10-01editors/micro: Update to 2.0.7sjmulder2-28/+112
Changes: Keybindings improvements - Key sequences can be bound with <Key1><Key2>..., for example <Ctrl-x><Ctrl-c>. - Different keybindings for buffers, command bar, and terminal panes can be specified. - See > help keybindings for the details and defaults. - Better support for complex keybindings. - Function keys with modifiers. - PgUp, PgDown, Delete... with modifiers. Clipboard - Support for multiple cursors (internal clipboards for each cursor). - Support for OSC52 (copy and paste via your terminal, which works over ssh). - New clipboard option (default external). - Set to internal for internal clipboard only. - Set to external for xclip/xsel external clipboard. - Set to terminal to use OSC52. - Known to work in iTerm2, kitty, xterm, st, rxvt-unicode. - See > help copypaste for details on enabling support in your terminal. - 24-bit color support on Windows (make sure to set MICRO_TRUECOLOR=1) - Doesn't work with ConEmu but works with Windows-terminal, command prompt... Minor changes - Better support for obscure terminals (reading terminfo dynamically without relying on infocmp). - Better truecolor detection. - No duplicates in up-arrow history. - Graceful exit when receiving SIGTERM. Bug fixes - Fix path escaping on Windows. - Fix issue when fastdirty is off - Syntax highlighting and linting fixes
2020-09-03Revbump all Go packages after default Go version was changed to 1.15.1bsiegert1-2/+2
2020-08-14Revbump all Go packages after go114 updatebsiegert1-2/+2
2020-07-17Revbump all Go packages after go114 update.bsiegert1-1/+2
2020-06-26editors/micro: Update to 2.0.6sjmulder2-87/+86
Changes in 2.0.5: - Micro will ensure that settings.json only contains non-default settings. - Settings will have default values unless overridden in settings.json. - Any settings with default values in settings.json will be removed after modifying your settings or running "micro -clean". - New relativeruler option (default: off). - Makes line numbers relative to your current cursor position. - New parsecursor option for file:line:col syntax (default: off). - Enable for previous behavior to open a file at a location. - More consistent key labels to reduce confusion about keybindings. - Autocompletion is more conservative and only triggers for alphanumerics. - Performance improvements. - More languages supported by the default comment plugin. - Use Alt-/ or Ctrl-/ (new) to comment/uncomment a block of code. - Note that micro sees Ctrl-/ as the CtrlUnderscore event from the terminal. - Bug fixes. - Mouse support in command bar. - Escape sequence handling. - Other minor issues and improvements. Changes in 2.0.6: - Improvements to the backup system. - permbackup option (default: off). - backdupdir option (default directory is ~/.config/micro/backups). - Some new statusformat directives for the statusline: - status.lines, status.vcol, status.bytes, status.size. - Errors parsing settings.json will not cause settings to be overwritten. - Bug fixes. - Pasting CRLF text. - Plugin options not persisting properly. - Backspace on Windows. - Better test infrastructure.
2020-06-17Revbump Go packages after Go 1.14.4 update.bsiegert1-1/+2
2020-06-02Import wip/micro as editors/microsjmulder4-0/+379
Terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the capabilities of modern terminals. As its name indicates, micro aims to be somewhat of a successor to the nano editor by being easy to install and use. It strives to be enjoyable as a full-time editor for people who prefer to work in a terminal, or those who regularly edit files over SSH.