David Refoua
126347025f
cleanup
2024-11-14 00:01:29 +03:30
David Refoua
7ceacb63dd
respect PATHEXT instead of hardcoding our own value
...
* support other path extensions as well (e.g. `.py` commonly used)
2024-11-14 00:00:53 +03:30
David Refoua
510178852d
add missing qualified dir
...
https://github.com/cmderdev/cmder/pull/1961
2024-11-13 23:58:11 +03:30
David Refoua
4d15730d05
cleanup
2024-11-13 23:14:49 +03:30
David Refoua
25ccfeed77
prevent warnings if the dir does not exist
...
https://github.com/cmderdev/cmder/issues/121#issuecomment-654171568
2024-11-13 23:08:13 +03:30
David Refoua
42315d8cec
enable /d
flag in excd
by default
2024-10-18 03:18:17 +03:30
David Refoua
c6dbb89129
Merge branch 'master' of https://github.com/cmderdev/cmder
2024-10-17 20:00:32 +03:30
David Refoua
1cfba25beb
fix conflict
2024-10-17 20:00:21 +03:30
David Refoua
2007baef6e
Updates to 3
vendored dependencies
2024-10-17 19:52:36 +03:30
David Refoua
e220d114b2
add notes on what shim actually is
2024-10-17 19:43:14 +03:30
DRSDavidSoft
4204faa063
⬆️ Update dependencies (git-for-windows v2.47.0.windows.1, clink v1.7.3, clink-completions v0.6.0)
2024-10-16 13:42:04 +00:00
David Refoua
540532f126
make library comments consistent and clean up code
2024-10-14 14:40:21 +03:30
Stan West
b56a6d43cb
Use single quotes inside double quotes
2024-07-26 20:24:12 -04:00
DRSDavidSoft
45fd0c2666
⬆️ Update dependencies (git-for-windows v2.45.1.windows.1, clink v1.6.14, clink-completions v0.5.2)
2024-05-29 13:40:37 +00:00
David Refoua
5145a15139
display git improper version string as debug
2024-05-28 17:19:47 +03:30
David Refoua
92419a48fc
log the executable path for improper git
2024-05-23 21:59:16 +03:30
David Refoua
c9b77f618a
enable match.expand_envvars
...
This is part of the "Enhanced default settings" by Clink and a very useful feature
2024-05-20 10:57:51 +03:30
Dax T. Games
2135fce19f
revert git update to not include a release candidate
2023-11-11 09:12:30 -08:00
DRSDavidSoft
8498447878
⬆️ Update dependencies (git-for-windows v2.43.0-rc0.windows.1, clink v1.5.12)
2023-11-03 13:40:42 +00:00
David Refoua
ffb93b1804
call init.bat
with the same arguments
2023-10-25 12:32:31 +03:30
DRSDavidSoft
d0cb6b5c23
⬆️ Update dependencies (clink v1.5.9, clink-completions v0.4.11)
2023-10-10 13:40:41 +00:00
DRSDavidSoft
faf66542b4
⬆️ Update dependencies (git-for-windows v2.42.0.windows.2, clink v1.5.6)
2023-09-22 13:40:52 +00:00
David Refoua
3ea9728ffd
Merge pull request #2861 from chrisant996/chrisant_fix_2859
...
Fix #2859 ; script error when cwd name contains `%`
2023-07-25 17:18:22 +03:30
github-actions[bot]
9be28807cb
⬆️ Update dependencies (conemu-maximus5 v23.07.24) ( #2863 )
...
Co-authored-by: DRSDavidSoft <DRSDavidSoft@users.noreply.github.com>
2023-07-24 14:55:59 +01:00
github-actions[bot]
e2168a361c
⬆️ Update dependencies (git-for-windows v2.41.0.windows.3, clink v1.5.1, conemu-maximus5 v23.07.23, clink-completions v0.4.10) ( #2850 )
...
Co-authored-by: DRSDavidSoft <DRSDavidSoft@users.noreply.github.com>
2023-07-24 09:29:50 +01:00
Chris Antos
84ee96c64f
Fix #2859 ; script error when cwd name contains %
...
The `string.gsub()` function in Lua always uses Lua patterns (which are
similar to regular expressions). Cmder's custom prompt wants to perform
simple plain text find/replace operations on strings. `string.gsub()`
is the right Lua function for that, but since it always uses Lua
patterns it's necessary to apply escaping to the input strings otherwise
they can get misinterpreted and cause runtime errors.
For example, if the current working directory name contains a percent
sign, such as literally "My%20Home".
This change fixes that. It introduces a helper function `gsub_plain()`
which behaves like `string.gsub()` but applies appropriate escaping to
convert the plain text input strings into the corresponding Lua
patterns so that it can achieve plain text find/replace operations.
It also introduces separate helper functions for escaping the `find` and
`replace` parameters for `string.gsub()`, since they have different
escaping rules.
2023-07-10 18:07:53 -07:00
David Refoua
e9750ab73d
avoid erroneous messages, skip clink if injection fails fatally
2023-07-04 12:10:32 +03:30
Martin Kemp
34f2aabb8e
Remove PSGet Entirely
...
Fixes #2841
Signed-off-by: Martin Kemp <me@martinke.mp>
2023-05-23 11:11:39 +01:00
David Refoua
845720e25a
Merge pull request #2847 from chrisant996/fix_2846
...
Fix 2846
2023-05-17 11:30:13 +03:30
DRSDavidSoft
48e4dff882
⬆️ Update dependencies (clink-completions v0.4.8)
2023-05-16 13:40:42 +00:00
Chris Antos
a605ec520d
Clean luacheck warnings.
2023-05-15 09:18:59 -07:00
Chris Antos
5fab87f4d6
Remove unused function.
...
The `get_hg_status()` function has been unused since commit
35eab7a51a
in 2018.
2023-05-15 09:18:47 -07:00
Chris Antos
c9153c96bf
Fix global Lua namespace pollution.
...
Some variables were global when the intent was to be local variables.
2023-05-15 09:17:01 -07:00
Chris Antos
74381ecd19
Fix #2846 ; errors when git/svn/hg not installed.
...
Also fixes error when HEAD is not available in a git repo, e.g. due to a
corrupt repo.
2023-05-15 09:15:36 -07:00
DRSDavidSoft
7b880efda4
⬆️ Update dependencies (git-for-windows v2.40.1.windows.1)
2023-04-26 13:40:36 +00:00
DRSDavidSoft
7daeb465e8
⬆️ Update dependencies (clink v1.4.24)
2023-04-24 13:41:39 +00:00
DRSDavidSoft
36ad85c7b7
⬆️ Update dependencies (git-for-windows v2.40.0.windows.1, clink v1.4.23)
2023-03-16 13:43:09 +00:00
DRSDavidSoft
4efbe0bd62
⬆️ Update dependencies (git-for-windows v2.40.0-rc2.windows.1, clink v1.4.22, clink-completions v0.4.7)
2023-03-10 13:42:19 +00:00
Dax T. Games
d82fece61e
Remove unnecessary git actions in fiast init
2023-01-23 19:16:44 -08:00
Dax T. Games
6bd2e260f0
Add time to debug output
2023-01-22 12:30:30 -08:00
DRSDavidSoft
9e87f375f1
⬆️ Update dependencies (clink v1.4.10)
2023-01-16 13:41:30 +00:00
DRSDavidSoft
0b01ea6f63
⬆️ Update dependencies (clink v1.4.9, clink-completions v0.4.4)
2023-01-15 13:41:12 +00:00
DRSDavidSoft
5135370ec1
⬆️ Update dependencies (git-for-windows v2.39.0.windows.2, clink v1.4.6)
2022-12-22 13:40:52 +00:00
DRSDavidSoft
a03ad615f1
⬆️ Update dependencies (clink v1.4.5)
2022-12-21 13:40:56 +00:00
David Refoua
8b3f38ad21
fix misspellings
2022-12-21 02:35:11 +03:30
David Refoua
9e55c48200
fix checking for clink injection
2022-12-21 02:29:31 +03:30
Brian Dukes
e1bf703f50
Fix error from profile.d PowerShell scripts
...
When there are `ps1` files in `profile.d`, the following error is logged:
>A positional parameter cannot be found that accepts argument 'Sourcing'.
2022-12-20 10:50:44 -06:00
David Refoua
2e9b512102
adjust history settings to more suitable default values
2022-12-20 10:45:09 +03:30
Martin Kemp
470808838f
TotalSecond -> TotalSeconds
...
Signed-off-by: Martin Kemp <me@martinke.mp>
2022-12-19 10:15:02 +00:00
Martin Kemp
328f4b3073
Use New-TimeSpan to calculate total elapsed time
...
Fixes #2797
Signed-off-by: Martin Kemp <me@martinke.mp>
2022-12-19 10:13:34 +00:00