sammy
da6a4aa70f
chore: add build-dev to Makefile
...
this builds hilbish with a version including the latest git commit.
2021-05-14 06:22:20 -04:00
sammy
69c0ccc807
fix: make `version` a var
...
so now, it can be changed in compile time
2021-05-13 21:02:56 -04:00
sammy
bb7f9e45f0
chore: bump version
2021-05-12 06:42:43 -04:00
sammy
edd45e4182
fix: resplit input on alias
...
this makes it so itll properly check if the aliased *command* is
defined in lua
therefore, cd with an argument can be aliased now
2021-05-12 06:40:30 -04:00
sammy
f9c1eced68
chore: bump version
2021-05-11 19:39:51 -04:00
sammy
fd478e883f
feat: args variable ( resolves #49 )
...
anytime hilbish is ran as shebang or given a script to run,
itll provide an `args` variable which will be the args a user
provides to the script.
it includes the execute path, as most argv's do
2021-05-11 19:37:00 -04:00
sammy
0f9d3732fb
fix: check if type assertion of return value is valid
2021-05-11 19:00:07 -04:00
sammy
accd4beeba
fix(cd): return err code of fs.cd instead of 1 specifically
2021-05-11 18:57:54 -04:00
sammy
a140db1610
fix(cd): make it return 1 exit code on err
2021-05-11 18:55:22 -04:00
sammy
630d7dde9c
fix: prefer to run preload in cwd first
2021-05-11 18:55:05 -04:00
sammy
0ddfc5bea0
feat: allow command defined by commander to return exit code
2021-05-11 18:53:24 -04:00
sammy
cc995e0f34
chore: bump version
2021-05-11 18:52:49 -04:00
sammy
05f5bbcfdd
fix: add -c description
2021-05-11 18:19:53 -04:00
sammy
0acae37704
chore: revert "fix: reordering init code [...]"
...
this reverts commit 8d5e36bcde
.
apparently, when i reordered the code it caused hilbish's history
to be emptied and not work when used interactively
i literally have no idea why
2021-05-11 18:12:58 -04:00
sammy
8f94990fc3
feat: add exec function
...
this is basically the `exec` "command" in sh
itll replace hilbish with whatever provided
simple usage:
exec 'sleep 100'
2021-05-08 11:50:09 -04:00
sammy
1bacbfc778
fix: correct description for -n
2021-05-08 09:30:32 -04:00
sammy
8d5e36bcde
fix: reorder init code, making hilbish faster when used non-interactively
2021-05-08 09:30:14 -04:00
sammy
941902f43b
style: remove unneeded assign to _
2021-05-08 09:12:21 -04:00
sammy
cdd9dc1544
chore: merge from master
2021-05-08 08:57:16 -04:00
sammy
e6382d454d
feat: add -n flag ( closes #47 )
2021-05-08 08:56:24 -04:00
Jim Tittsler
70a9e471eb
fix: typo in README ( #46 )
2021-05-03 06:20:52 -04:00
sammy
6bb2a2f8c8
chore: make login message use less lines in code
2021-05-01 16:28:43 -04:00
sammy
8242e0bfc9
fix: use lunacolors instead of ansikit
2021-05-01 16:18:11 -04:00
sammy
69883c6b73
docs: add --recursive flag to git clone
2021-05-01 16:07:39 -04:00
sammy
4d38b913f1
feat: add lunacolors library
2021-05-01 16:05:02 -04:00
sammy
32dea836d5
fix!: remove format function from ansikit
...
BREAKING CHANGE: this function has been moved to
Lunacolors. Hilbish users will now be using that
separate library for colors, while ansikit will be for
other terminal codes and things
2021-05-01 16:01:42 -04:00
sammy
6e3f1e1b97
fix: add additional lua import path
2021-05-01 15:56:08 -04:00
sammy
c43aab6a60
fix: make appendPath expand ~ to home dir
2021-05-01 15:35:43 -04:00
sammy
9934ba417f
chore: bump to 0.4
2021-05-01 14:57:20 -04:00
sammy
a75100d15d
feat: add _user variable
...
this will probably change to a better global var in the
future, but it's `_user` now.
this provides a simple, guaranteed way of getting the
current user's name
$USER (in?)correctly shows the previous user when
`su` is used, _user will always be root in this case
2021-05-01 14:51:57 -04:00
sammy
60b1b50bb3
feat: add multiline hook ( resolves #19 )
2021-05-01 14:25:58 -04:00
sammy
f00063beaa
chore: bump version
2021-05-01 14:17:33 -04:00
sammy
7f8d8db53e
fix: errors and make login rc run before config
2021-05-01 14:17:14 -04:00
sammy
38f1d62598
feat: make hilbish act like a login shell
...
when a user logs in with hilbish as the user shell,
or -l/--login is passed
resolves #37
2021-05-01 14:08:42 -04:00
sammy
e580112e1b
refactor: use lua.Check<Type> where possible ( resolves #40 )
2021-05-01 13:42:15 -04:00
sammy
d2a44c70c0
chore: remove redundant module renaming
2021-05-01 13:38:01 -04:00
sammy
447775f8c4
chore: bump version
2021-05-01 13:33:05 -04:00
sammy
338b45227c
chore: merge from master
2021-05-01 13:32:09 -04:00
sammy
80029cfff3
feat: make cd builtin work with env variables ( resolves #43 )
2021-05-01 13:31:51 -04:00
Brandon Wright
d653a9c349
fix: newline near contributors imgs ( #45 )
2021-05-01 12:05:54 -05:00
sammy
9b3f8e818c
style: add space between binary op
2021-05-01 11:55:09 -04:00
sammy
75d7c6acc6
chore: bump version
2021-05-01 10:51:00 -04:00
sammy
96600398b7
fix: dont be interactvive if source is provided
...
hilbish wont go into an interactive mode if its provided
a lua source file to run, even if -i is passed.
i feel like this makes the most sense.
2021-05-01 10:44:15 -04:00
sammy
88d9f2e21d
chore: bump version
2021-05-01 02:31:49 -04:00
sammy
a7d8851de0
fix: make -i false by default and fix cmdflag comparing
2021-05-01 01:50:22 -04:00
sammy
520fdaf728
chore: merge from dev branch
2021-05-01 01:15:19 -04:00
sammy
89fc544545
feat: switch to getopt library and add running lua source files from cli
2021-05-01 01:08:55 -04:00
sammy
e7dcbd5a95
feat: add string.split function
2021-05-01 01:08:20 -04:00
sammy
507c8b6ed2
chore: update manifest files
2021-05-01 01:07:55 -04:00
Freddson
777d6ac482
docs: Add zypper to the README ( #42 )
2021-04-29 10:02:04 -04:00