Arun Prakash Jana
d80fdf335b
Check if file is already selected before appending in picker mode
2021-07-24 01:51:20 +05:30
Arun Prakash Jana
e2545f9596
Truncate output file before writing in picker mode
2021-07-24 01:25:28 +05:30
Arun Prakash Jana
25fab4cb2e
Open controlling terminal for input when run in a script
2021-07-23 23:46:20 +05:30
N-R-K
3a98dfb0b0
xdgdefault plugin: add dmenu support ( #1112 )
...
* xdgdefault plugin: add dmenu support
use fzf if available. otherwise, if available, use dmenu.
should be possible to use rofi as well, but i don't use rofi nor do i
have it installed for testing.
* xdgdefault plugin: add GUI flag
* update xdgdefault requirement
2021-07-23 17:06:19 +05:30
Arun Prakash Jana
0150c69844
Update plugin docs
2021-07-22 20:11:07 +05:30
Arun Prakash Jana
b561772ada
Remove dated documentation
2021-07-21 23:43:59 +05:30
Arun Prakash Jana
ad163fb574
Revert variety in Haiku Makefile
2021-07-21 17:56:46 +05:30
Arun Prakash Jana
bc5b39d54c
Prepare for release v4.2 Mojito
2021-07-21 17:45:39 +05:30
Arun Prakash Jana
14663b964b
Add option to specify arguments to exec
2021-07-21 11:54:40 +05:30
Arun Prakash Jana
3f07a8ca76
Press TAB to insert current file name at prompt
2021-07-21 11:24:46 +05:30
Jonathan Rash
4b4355c733
Added execute fallback to nuke
2021-07-21 10:28:33 +05:30
Arun Prakash Jana
7b31a356d2
Minor update
2021-07-20 23:31:40 +05:30
Arun Prakash Jana
9972c4bdb0
Fix #1110 : sanitize path from plugin
2021-07-19 03:57:53 +05:30
Arun Prakash Jana
c470143113
Clear filter early before running plugin
2021-07-19 01:52:44 +05:30
Arun Prakash Jana
3b5800fc7a
Selection-specific scratch buffer
2021-07-18 11:45:50 +05:30
Arun Prakash Jana
29a7a25445
Free allocated memory
2021-07-18 02:51:09 +05:30
Arun Prakash Jana
6f14190e6d
Plugin suedit - preserve environment
2021-07-17 22:00:38 +05:30
Arun Prakash Jana
d54bc230f6
fzopen - add option to open files in nuke
2021-07-17 21:04:53 +05:30
Arun Prakash Jana
e31f71285d
Merge plugin fzz into autojump
2021-07-17 20:02:22 +05:30
Arun Prakash Jana
1e182a1fe5
Remember the last command executed at prompt
2021-07-17 16:30:45 +05:30
Arun Prakash Jana
f7aa4ed324
Add macro for prompt
2021-07-17 13:09:33 +05:30
Arun Prakash Jana
0ef34a930c
Use a simpler macro
2021-07-17 13:05:37 +05:30
Arun Prakash Jana
07b627a725
Fix unused variable warning
2021-07-17 04:46:35 +05:30
Arun Prakash Jana
a911b3044a
Code reformat
2021-07-16 21:19:17 +05:30
Arun Prakash Jana
26f44f0dfc
Fix selection in /
2021-07-16 11:09:20 +05:30
Arun Prakash Jana
fa0f9ddc93
Remove from selection when hovered entry is deleted
2021-07-16 04:44:01 +05:30
Arun Prakash Jana
3ef50f06f8
Ignore filter key if no results
2021-07-16 02:22:01 +05:30
Arun Prakash Jana
d40dbfd69a
Do not apply filter if directory is empty
2021-07-16 01:54:15 +05:30
Arun Prakash Jana
8af773eb0d
Allocate PATH_MAX aligned memory size
2021-07-16 01:19:09 +05:30
Arun Prakash Jana
8ad807d4a9
Optimize repeat copy of same prefix
2021-07-15 23:43:07 +05:30
Arun Prakash Jana
4ec87e3021
Optimize bulk selection
2021-07-15 21:21:54 +05:30
Arun Prakash Jana
0159c08602
Invert optimization: allocate in a go
2021-07-15 18:59:00 +05:30
Arun Prakash Jana
064f5ea998
Show msg for both invert and select all
2021-07-15 11:45:32 +05:30
Arun Prakash Jana
9526fb7612
Optimize invert further
2021-07-15 02:06:11 +05:30
Arun Prakash Jana
61d8a29d84
In-place invert optimization
2021-07-14 21:04:02 +05:30
Arun Prakash Jana
cef9bd289f
Update docs
2021-07-14 02:44:38 +05:30
Arun Prakash Jana
b3ef30a8ba
Update add to and invert selection logic
2021-07-13 21:46:18 +05:30
Arun Prakash Jana
96f2dfa8a5
Scan for selection status on redraw()
2021-07-13 01:30:23 +05:30
Arun Prakash Jana
60f310160a
Remove redundant macro
2021-07-12 02:54:00 +05:30
Arun Prakash Jana
baca4693ec
Remove redundant prompt
2021-07-12 01:22:39 +05:30
Terminator X
e94ac0b91b
Merge pull request #1106 from KlzXS/persistent_selection
...
Use selbufpos instead of selbuflen
2021-07-11 23:58:58 +05:30
KlzXS
b5d1a1b036
Use selbufpos instead of selbuflen
2021-07-11 20:16:28 +02:00
KlzXS
c0dceb18c6
Persistent selection ( #1086 )
...
* Add persistsel
* Fix Makefile spacing
* Update Haiku Makefile
* Do a double pass on inversion
* Split single and double pass for easier testing
Removed lastappendpos
Eliminate suffix matches
* Check if dir is in selection before searching for files
Fix double pass
* Switch to mainline
Optimize memory moving
Handle large selection in invertsel()
Going forward with 2pass
* Update Makefiles
* Fix style
* Move forward declarations
* Remove edit selection in inversion
Replace buf with g_buf to fix CI
Fix CI
* Style changes
* Comment the code
* Style fixes
* Fix infinite loop
* Fix crash on empty invert
* Fix off-by-one-in-two-places
Off-by-twice?
* Adopt changes from master
* Only check directory if entry in it is selected
* Better organization
* Wrong variable
* Tiny optimizations
* Style fixes and updated man page
* Update man page
* Remember where we found directory path in selection
Add in progress message on invert
2021-07-10 07:30:02 +05:30
Arun Prakash Jana
d9db6b045c
Fix #1102 : suppress clang unused variable warnings
2021-07-10 02:08:48 +05:30
Arun Prakash Jana
5f5ee10e94
Fix #1101 : confirm trashing files
2021-07-09 21:00:46 +05:30
Arun Prakash Jana
facdc5fdeb
Fix #1098 : clear selmode on last deselect
2021-07-06 23:25:49 +05:30
Piña Colada
1269dd2695
Merge pull request #1095 from luukvbaal/patches
...
Remove gitstatus libgit2 dependency
2021-07-06 17:48:25 +05:30
Luuk van Baal
ddf845be88
Remove gitstatus libgit2 dependency
2021-07-06 02:01:19 +02:00
Piña Colada
c482cf54f0
Merge pull request #1094 from jarun/preview-tui
...
Allow tmux inside kitty without KITTY_LISTEN_ON set
2021-07-05 22:29:03 +05:30
Luuk van Baal
4abced6142
Allow tmux inside kitty without KITTY_LISTEN_ON set
2021-07-05 15:40:18 +02:00