Overview

Request 828643 accepted

- Update to version 2.0.6:
* Update plugin documentation
* Add more functions to customize status bar
* Support month and day names in crontab syntax
* Use boundaries in cron syntax rules
* Add Search function to BufPane
* Update readme
* Don't delete user settings if a parse error occurs
* Treat CRLF as LF when inserting text
* Fix backup call in test
* Improve backup system
* Don't use make in travis script
* Upgrade travis to go 1.13.x
* Upgrade Travis Go to 1.12.x
* Include windows for travis
* Persist plugin options correctly
* Add simulation screen tests
* Improve message in micro -clean
* Fix backspace on Windows
* Clean default settings in micro -clean
* Bind Ctrl-/ (CtrlUnderscore) in comment plugin
* Fix issue with search and replace at the end of a range
* Update tcell version
* Improve keybinding label consistency
* Start replacement search at cursor location
* Fix typo in defaultkeys (#1730)
* Don't move nightly tag
* Edit nightly release instead of replacing
* Cross compile binaries in release scripts
* Use hub for creating releases
* Add support for dozens more languages to the comment plugin (#1729)
* Add comment support for Haskell (#1728)
* Update go-shellquote for windows
* Make determining rune width faster
* Update runtime build script
* Fix MoveLines on last line of buffer
* More consistent key labels in docs
* Add note for macOS terminals in docs
* Update readme
* Add latex support in comment plugin (#1725)
* Make determining whether a code point represents a combining mark faster (#1719)
* Show key name in raw pane
* Don't apply cli options to settings.json
* Lower priority of cursorline and colorcolumn highlighting (#1697)
* settings.json only contains modified settings
* Only start autocompletion for alphanumerics
* python.yaml: add async as a keyword (#1713)
* Expose ConfigDir and Tabs to plugins
* Verify that all settings have correct type
* Fix mouse support in command bar
* Update tcell to fix escape sequence bug
* Fix fileformat for newly created files
* Fix highlighting at the end of line (#1705)
* Add mksh to the set of supported shells (#1703)
* Up arrow on first line brings to start
* Add pkgsrc instruction to readme (#1699)
* Update readme
* Unicode replacement char for non-displayable chars
* More fixes for parsecursor
* Fix handling of +LINE:COL syntax
* Slightly improve performance for very long lines
* Only perform save callback if save was successful
* Add `parsecursor` option for file:line:col syntax
* Always use current pane for keybinding actions
* Use "goto -1" to move cursor to end of document. (#1691)
* Added hybrid line numbers (#1690)
* Update readme
* UpdateRules after save is successful
* Fix '> save' command
* Update readme
* Tweak railscast colorscheme to better reflect original (#1297)
* README: Add Fedora install instructions (#1671)
* Rewrite TOML syntax file (#1681)
* set bash-fc file's syntax as shell (#1679)
- Added _service file to easier handling go.mod
- Update to version 2.0.4:
* Fix dropped redraw events (#1675)
* Allow divider customization with divchars option
* Improve unicode line array test
* Expose CharacterCount to plugins
* Use unicode.Mark for combining unicode range
* Final touches for combining character support
* Use CharacterCount over RuneCount
* Use DecodeCharacter over DecodeRune
* Add more sophisticated buffer benchmark system

Loading...


Jeff Kowalczyk's avatar
reviewer target maintainer

Thanks for the update. Upstream and the packaging requires >=go1.11 but uses the flag go build -modcacherw which was introduced in go1.14. go1.14 is an available version, but Is there a particular need for using modcacherw?

https://golang.org/doc/go1.14#go-command

-modcacherw is a new flag that instructs the go command to leave newly-created directories in the module cache at their default permissions rather than making them read-only. The use of this flag makes it more likely that tests or other tools will accidentally add files not included in the module's verified checksum. However, it allows the use of rm -rf (instead of go clean -modcache) to remove the module cache.

I also suggest BuildRequires golang(API) >= 1.11 to better align with recent improvements to the go metapackage. Most projects will have a prefer: go clause that resolves to the go metapackage, but can alternately resolve to a go1.x package if version .

Request History
Tuukka Pasanen's avatar

illuusio created request

- Update to version 2.0.6:
* Update plugin documentation
* Add more functions to customize status bar
* Support month and day names in crontab syntax
* Use boundaries in cron syntax rules
* Add Search function to BufPane
* Update readme
* Don't delete user settings if a parse error occurs
* Treat CRLF as LF when inserting text
* Fix backup call in test
* Improve backup system
* Don't use make in travis script
* Upgrade travis to go 1.13.x
* Upgrade Travis Go to 1.12.x
* Include windows for travis
* Persist plugin options correctly
* Add simulation screen tests
* Improve message in micro -clean
* Fix backspace on Windows
* Clean default settings in micro -clean
* Bind Ctrl-/ (CtrlUnderscore) in comment plugin
* Fix issue with search and replace at the end of a range
* Update tcell version
* Improve keybinding label consistency
* Start replacement search at cursor location
* Fix typo in defaultkeys (#1730)
* Don't move nightly tag
* Edit nightly release instead of replacing
* Cross compile binaries in release scripts
* Use hub for creating releases
* Add support for dozens more languages to the comment plugin (#1729)
* Add comment support for Haskell (#1728)
* Update go-shellquote for windows
* Make determining rune width faster
* Update runtime build script
* Fix MoveLines on last line of buffer
* More consistent key labels in docs
* Add note for macOS terminals in docs
* Update readme
* Add latex support in comment plugin (#1725)
* Make determining whether a code point represents a combining mark faster (#1719)
* Show key name in raw pane
* Don't apply cli options to settings.json
* Lower priority of cursorline and colorcolumn highlighting (#1697)
* settings.json only contains modified settings
* Only start autocompletion for alphanumerics
* python.yaml: add async as a keyword (#1713)
* Expose ConfigDir and Tabs to plugins
* Verify that all settings have correct type
* Fix mouse support in command bar
* Update tcell to fix escape sequence bug
* Fix fileformat for newly created files
* Fix highlighting at the end of line (#1705)
* Add mksh to the set of supported shells (#1703)
* Up arrow on first line brings to start
* Add pkgsrc instruction to readme (#1699)
* Update readme
* Unicode replacement char for non-displayable chars
* More fixes for parsecursor
* Fix handling of +LINE:COL syntax
* Slightly improve performance for very long lines
* Only perform save callback if save was successful
* Add `parsecursor` option for file:line:col syntax
* Always use current pane for keybinding actions
* Use "goto -1" to move cursor to end of document. (#1691)
* Added hybrid line numbers (#1690)
* Update readme
* UpdateRules after save is successful
* Fix '> save' command
* Update readme
* Tweak railscast colorscheme to better reflect original (#1297)
* README: Add Fedora install instructions (#1671)
* Rewrite TOML syntax file (#1681)
* set bash-fc file's syntax as shell (#1679)
- Added _service file to easier handling go.mod
- Update to version 2.0.4:
* Fix dropped redraw events (#1675)
* Allow divider customization with divchars option
* Improve unicode line array test
* Expose CharacterCount to plugins
* Use unicode.Mark for combining unicode range
* Final touches for combining character support
* Use CharacterCount over RuneCount
* Use DecodeCharacter over DecodeRune
* Add more sophisticated buffer benchmark system


Jeff Kowalczyk's avatar

jfkw accepted review

Review OK for devel:languages:go


Jeff Kowalczyk's avatar

jfkw approved review

Review OK for devel:languages:go


Jeff Kowalczyk's avatar

jfkw accepted request

Accept to devel:languages:go

openSUSE Build Service is sponsored by