mirror of https://github.com/Hilbis/Hilbish
parent
84dce8c537
commit
1ba314d961
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -1,5 +1,20 @@
|
||||||
# 🎀 Changelog
|
# 🎀 Changelog
|
||||||
|
|
||||||
|
## [1.2.0] - 2022-03-17
|
||||||
|
### Added
|
||||||
|
- Job Management additions
|
||||||
|
- `job.start` and `job.done` hooks (`doc hooks job`)
|
||||||
|
- `hilbish.jobs` interface (`get(id)` function gets a job object via `id`, `all()` gets all)
|
||||||
|
- Customizable runner/exec mode
|
||||||
|
- However Hilbish runs interactive user input can now be changed Lua side (`doc runner-mode`)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- `vimMode` doc is now `vim-mode`
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Make sure input which is supposed to go in history goes there
|
||||||
|
- Cursor is right at the end of input on history search
|
||||||
|
|
||||||
## [1.1.0] - 2022-03-17
|
## [1.1.0] - 2022-03-17
|
||||||
### Added
|
### Added
|
||||||
- `hilbish.vimAction` hook (`doc vimMode actions`)
|
- `hilbish.vimAction` hook (`doc vimMode actions`)
|
||||||
|
|
2
vars.go
2
vars.go
|
@ -2,7 +2,7 @@ package main
|
||||||
|
|
||||||
// String vars that are free to be changed at compile time
|
// String vars that are free to be changed at compile time
|
||||||
var (
|
var (
|
||||||
version = "v1.1.0"
|
version = "v1.2.0"
|
||||||
defaultConfDir = "" // ~ will be substituted for home, path for user's default config
|
defaultConfDir = "" // ~ will be substituted for home, path for user's default config
|
||||||
defaultHistDir = ""
|
defaultHistDir = ""
|
||||||
commonRequirePaths = "';./libs/?/init.lua;./?/init.lua;./?/?.lua'"
|
commonRequirePaths = "';./libs/?/init.lua;./?/init.lua;./?/?.lua'"
|
||||||
|
|
Loading…
Reference in New Issue