TorchedSammy
3374dfd28f
fix: always start job in exec handler
...
makes sure that if any errors occur the job
will still throw the start hook
2022-05-13 16:59:16 -04:00
TorchedSammy
9a87d76969
fix: finish job on lua job stop function
...
makesdoc sure that a job is finalized by throwing
the job.done hook and setting its running status
to false
2022-05-12 22:29:07 -04:00
TorchedSammy
200fe1054f
fix: pass user input to runner function instead of expanded alias
2022-05-11 21:13:29 -04:00
TorchedSammy
52a58b14c3
docs: update nature doc to have new correct info
2022-05-08 16:03:44 -04:00
TorchedSammy
15035c02cb
fix(doc): check if modmt exists before trying to get module prop docs
2022-05-08 16:02:24 -04:00
Renzix
dd678a4a75
fix: Not loading nature module on some systems ( #150 )
2022-05-08 16:01:06 -04:00
TorchedSammy
0a01ed862c
feat: print error if nature is missing
2022-05-06 19:21:32 -04:00
TorchedSammy
200babf831
chore: merge
2022-05-06 19:06:57 -04:00
TorchedSammy
d6bc8b51de
ci: fix missing files on either oses
2022-05-06 19:06:06 -04:00
sammyette
86700c0a7b
ci: add codeql code scanning
2022-05-06 12:20:41 -04:00
TorchedSammy
30b07bc98b
fix: check if path has tilde prefix when trying to expand home
2022-05-01 07:20:40 -04:00
TorchedSammy
db437905e0
fix: implicitly expand tilde on args to all fs functions
2022-05-01 00:49:59 -04:00
TorchedSammy
c890b86e08
feat: add hilbish.opts and autocd opt
...
this adds `hilbish.opts`, a table to set
simple options akin to shopt or setopt on
other shells. this commit specifically also
includes the autocd opt, which functions the
way you expect it to
to set opts, simply do `hilbish.opts.name = val`,
where `name` is the opt you want to set and `val`
being the opt setting.
ie: `hilbish.opts.autocd = true` to turn on autocd
2022-04-30 21:22:37 -04:00
TorchedSammy
a8406657f9
fix: remove nature hook handles
...
since it was only for command exec errors,
and theyre handled runner side now, we dont
have to handle it via hooks anymore
2022-04-30 21:05:21 -04:00
TorchedSammy
4178b78341
fix: return other errors from sh runner
...
makes it so that the sh runner function will return
command not found and not executable errors,
which makes them able to be handled via lua properly
2022-04-30 21:02:36 -04:00
TorchedSammy
c4eb3ad368
chore: change lua init errors to make more sense
2022-04-30 20:31:37 -04:00
TorchedSammy
0642ddda36
fix: push home dir to recent dirs with correct function
2022-04-30 20:28:47 -04:00
TorchedSammy
b210378380
ci: remove .exe from windows artifact names
2022-04-30 12:08:54 -04:00
TorchedSammy
03cb9c06f3
ci: fix release builds; make them include lua libs and nature lib
2022-04-30 12:08:39 -04:00
TorchedSammy
c929c7602f
ci: checkout submodules
2022-04-30 12:00:41 -04:00
TorchedSammy
e678ef66d8
docS: update changelogs for master
...
800th commit!
2022-04-30 12:00:01 -04:00
TorchedSammy
d053b58204
ci: indent list of files
2022-04-30 10:50:06 -04:00
TorchedSammy
eb3123405a
ci: fix list of files for artifact build
2022-04-30 10:48:32 -04:00
TorchedSammy
f12f88ed00
ci: include all required files in build artifacts
2022-04-30 10:45:55 -04:00
TorchedSammy
3bad452f95
fix: load completions by default
2022-04-24 09:00:06 -04:00
TorchedSammy
2790982ad1
fix: no command completions if query/line is an alias
...
basically, i have a `c` alias which is `git commit`,
this would resolve to `git commit` literally to try
and complete `commit`, which wouldnt match.
this fixes that, and instead itll suggest commands
that start with `c`. if there is a space after and
completion is requested, itll use the alias properly
2022-04-24 00:06:19 -04:00
TorchedSammy
4e5f8b5c80
docs: add docs for nature module
2022-04-24 00:00:18 -04:00
TorchedSammy
4a4c4d8c74
refactor: rewrite completion handler in lua
2022-04-23 23:59:03 -04:00
TorchedSammy
bcf02a6b0e
fix: make custom hist dir match default by adding hilbish to the path
2022-04-23 23:55:04 -04:00
TorchedSammy
984b8a4308
feat: add hilbish.aliases.resolve to resolve an alias
2022-04-23 12:28:28 -04:00
TorchedSammy
3db6334445
docs: [ci] generate new docs
2022-04-23 00:03:50 -04:00
TorchedSammy
9e596dc271
refactor: (re)organize and change prelude path and structure
...
prelude is no longer. it is now nature.
organized the single file prelude into multiple
source files and renamed it to nature. this is coming
after thought that it can turn into a general hilbish
lua core, with user facing modules as well.
this introduces the `nature.dirs` module, to interact
and get recently changed to directories and last/old
cwd.
2022-04-23 00:03:50 -04:00
TorchedSammy
f003249632
docs: update doc reference for vim mode actions
2022-04-23 00:03:49 -04:00
TorchedSammy
1714aeac36
feat: add fs.abs
2022-04-23 00:03:49 -04:00
TorchedSammy
bca89197ad
fix: add io flush after doc help message
2022-04-23 00:03:49 -04:00
TorchedSammy
27ac60b856
fix: remove unused var
2022-04-23 00:03:48 -04:00
TorchedSammy
dbb27f7739
docs: [ci] generate new docs
2022-04-23 00:03:48 -04:00
TorchedSammy
03a57fce5b
docs: add more documentation for completions
2022-04-23 00:03:48 -04:00
TorchedSammy
abfbeb5f84
feat: allow overwrite of completion handler ( closes #122 )
...
this also makes the completion functions `bins`
and `files` also return the prefix to pass
to the completion handler.
this is an overhaul to the completion system,
which gets the completion handler from lua
instead of being made to only have lua provided
*command* completions.
it does not have any performance deficit, even
though it calls in to golua for completions.
2022-04-23 00:03:47 -04:00
TorchedSammy
3194add3dc
fix: restore doc related metafields on hilbish table
2022-04-23 00:03:47 -04:00
TorchedSammy
1ba88fea88
fix: correct custom runner mode handling with recent changes
2022-04-23 00:03:47 -04:00
TorchedSammy
1274811739
docs: [ci] generate new docs
2022-04-23 00:03:46 -04:00
TorchedSammy
0af36db6ff
fix!: change the way highlighter and hinter are set
...
with the change of blocking changes to the
hilbish table, i took an opportunity
to make the highlighter and hinter callbacks
set in a more natural way. instead of being
a function which takes a callback, you set
the function itself.
2022-04-23 00:03:38 -04:00
TorchedSammy
1a4008fcfb
docs: [ci] generate new docs
2022-04-22 02:17:00 +00:00
TorchedSammy
57d7527356
fix: make hilbish.which work with aliases and commanders
2022-04-21 22:16:04 -04:00
TorchedSammy
3d525aa7da
fix: dont allow overrides on hilbish table
2022-04-21 20:39:38 -04:00
TorchedSammy
37e1b12b81
feat: add hilbish.completion.call to call a completer
2022-04-21 20:39:06 -04:00
TorchedSammy
abfd4e5196
fix(util): SetField on a table with a metatable causing panic
2022-04-21 20:33:32 -04:00
TorchedSammy
bd35e3b871
refactor: use foreach function to loop over lua tables
2022-04-21 14:01:59 -04:00
TorchedSammy
86aa40af64
docs: [ci] generate new docs
2022-04-21 16:19:31 +00:00