Arun Prakash Jana
e298f7eeaf
Update patches
2022-07-30 10:32:32 +05:30
Arun Prakash Jana
e73b57c78a
Option -B to use bsdtar as archive tool
2022-07-29 22:35:43 +05:30
Arun Prakash Jana
49a0d9d02c
Fix typo
2022-07-29 22:18:34 +05:30
Arun Prakash Jana
b76cea3a34
Revert "Patch #1386 : make bsdtar the default archive handler"
...
This reverts commit e104b749be
.
2022-07-29 22:14:00 +05:30
Arun Prakash Jana
83825a7d11
Fix rm prompt
...
Esc - cancels the search
y/Y - adds the force option
n/N/any other key - prompts for every file
2022-07-28 19:38:55 +05:30
Arun Prakash Jana
22db656b8d
Update gitignore file
2022-07-28 18:38:54 +05:30
Arun
07c1e8e655
Merge pull request #1440 from N-R-K/fix_emoji_tar
...
fix emoji tar command
2022-07-26 21:09:59 +05:30
NRK
61e1356fbd
fix emoji tar command
...
Fixes: https://github.com/jarun/nnn/pull/1356#discussion_r930094949
2022-07-26 21:37:38 +06:00
N-R-K
f618b78866
Makefile: more robust generated header tracking ( #1439 )
...
give each generated header it's own unique file so that it's not
possible to try and build `O_EMOJI=1` with the generated header for
`O_NERD=1`.
2022-07-26 20:26:49 +05:30
Arun Prakash Jana
f2a38b0e22
Update Haiku file
2022-07-26 20:20:04 +05:30
Arun Prakash Jana
0988268a61
Prepare for release v4.6 Absinthe
2022-07-26 19:28:44 +05:30
Tharindu Abeydeera
98287158aa
Add Elixir icon ( #1437 )
...
* Added icons for erlang, elixir and lockfile
* Lockfile icon updated
* Added colors for Erlang and elixir
* Added few more color variations and configured colors and file
extensions
* remove erlang and lock, use 1 color for elixir
Co-authored-by: Tharindu Abeydeera <tharindu.a@vizuamatix.com>
Co-authored-by: NRK <nrk@disroot.org>
2022-07-25 19:40:00 +05:30
Arun
e2e1d80d58
Merge pull request #1438 from N-R-K/icons_cleanup
...
icons-hash: comments and cleanups
2022-07-25 19:19:25 +05:30
NRK
e6b6466c49
icons-hash: comments and cleanups
...
adds some comments, references and cleanups. no change in functionality.
2022-07-25 18:34:36 +06:00
Arun Prakash Jana
f415924c7e
Remove redundant spaces
2022-07-24 20:07:27 +05:30
Arun Prakash Jana
ab0dc52c49
Add example to quick find in subtree and nuke
2022-07-24 16:20:54 +05:30
Arun
f829afe60b
Merge pull request #1436 from N-R-K/icon_compaction
...
icons: use a compact array
2022-07-24 16:14:52 +05:30
NRK
fe9c1bbb3a
icons: use a compact array
...
a lot of the extension use the same icon. this can be exploited via
having an array with all the unique icons and then storing a single byte
index into the unique array.
when using `O_EMOJI` this results in around ~1.7KiB drop in the total
table size. `O_NERD` and `O_ICONS` get roughly ~0.5KiB savings.
2022-07-24 16:24:11 +06:00
NRK
63a254951d
icons-hash: some minor cleanups
2022-07-24 16:24:11 +06:00
Arun
aab5ab53a5
Merge pull request #1435 from N-R-K/icons_update
...
Update some icons and colors
2022-07-24 15:40:18 +05:30
NRK
12f5faa10d
icons: replace double-width icons
2022-07-24 16:06:14 +06:00
NRK
f1932967e2
icons: use COLOR_C for go files
2022-07-24 16:06:14 +06:00
Arun Prakash Jana
197717ce68
Enable hidden when opening a hidden file
2022-07-23 09:33:11 +05:30
Arun
117025c1a4
Merge pull request #1432 from N-R-K/icon_rework_squashed
...
Revise and optimize icons handling
2022-07-22 22:37:25 +05:30
Arun
0381db1875
Merge pull request #1431 from luukvbaal/preview-tui
...
Preview-tui improvements
2022-07-22 22:33:16 +05:30
NRK
e98d9288d2
some cleanups and comments
2022-07-22 21:33:35 +06:00
NRK
c3a42f0d92
make clang-tidy happy
2022-07-22 17:31:55 +06:00
NRK
3b09fd1c75
Revise and optimize icons handling
...
This pretty much reworks the entire icon system. Some notable changes:
* The extensions are put into a statically generated hash-table instead
of a sorted array. We use Robin-Hood insertion to reduce the max probe
length. Currently we need to probe only 2 slots for `O_EMOJI` and only
3 for `O_NERD`/`O_ICONS`.
* I've opted not to use a perfect-hash since the perfect hashes
generated by [`gperf`](https://www.gnu.org/software/gperf ) used some
huge lookup table. The hash function also wasn't as minimal as I'd
like.
* Colors are now using X-Macros. This should speed up startup since we
don't have to search `icons_ext` linearly to find unique colors.
* The hash-table generator outputs a more space optimized `struct
icon_pair` using a char array instead of char pointer. This brings
down the binary size from `145KiB` when using `O_NERD` down to
`137KiB`.
* Some unnecessary duplication and indirection has been reduced by using
the `ICON_STR()` macro.
2022-07-22 17:08:42 +06:00
Luuk van Baal
3fb9cc1e5a
Preview-tui improvements
2022-07-22 10:49:13 +02:00
Arun Prakash Jana
d95755cce1
Use unget_wch()
2022-07-21 17:51:20 +05:30
Arun Prakash Jana
12b5416b2c
Fix #1428 : handle unicode keybinds
2022-07-20 20:09:34 +05:30
Arun Prakash Jana
a937265833
Reduce get_wch() array length and initialization.
2022-07-20 18:49:24 +05:30
Anomalocaridid
f2c7495f50
escape call to nnn
so nnn
can be used as an alias to n
2022-07-18 18:28:18 +05:30
Arun Prakash Jana
b0580905f2
Add Makefile target shellcheck
2022-07-18 18:28:16 +05:30
Arun Prakash Jana
b75a22f72d
Minor improvements
2022-07-18 18:28:16 +05:30
Arun Prakash Jana
b752744ca0
Show volume used information in help
2022-07-18 18:28:16 +05:30
Arun Prakash Jana
db7cb4da1e
Fix double order chars on filter case match change
2022-07-18 18:28:15 +05:30
Luuk van Baal
910763441d
Fix checkpatches duplicate make
2022-07-18 18:28:15 +05:30
Arun Prakash Jana
b658f324c2
Update README
2022-07-10 21:36:56 +05:30
Arun Prakash Jana
3f4efbefe4
Remove redundant check
...
sdfdf
2022-07-10 11:00:56 +05:30
Arun
c09ac1c174
Merge pull request #1421 from luukvbaal/patches
...
Add colemak patch
2022-07-09 17:20:46 +05:30
Luuk van Baal
a3cef1611d
Add colemak patch
2022-07-09 13:42:38 +02:00
Arun
f4116a5f42
Merge pull request #1420 from CinnamonJui/patch-1
...
Update plugin name in Configuration section
2022-07-08 20:57:35 +05:30
Jie
a7f243beed
Update plugin name in Configuration section
...
As the plugin was renamed from 'mocplay' to 'mocq' in 4dcefcc4d4
2022-07-08 23:25:40 +08:00
Arun Prakash Jana
8520fe5a0a
Udpate ToDO list
2022-07-01 22:28:21 +05:30
Arun
a998938b9d
Merge pull request #1413 from N-R-K/patches_ci
...
make it easy to check for failing patches locally
2022-07-01 07:45:00 +05:30
NRK
fd69fc2dca
make it easy to check for failing patches locally
...
adds a script `check-patches.sh` to check for patch failures and also
adds a make target `checkpatches` which will invoke the check-patches
script.
2022-07-01 05:47:23 +06:00
NRK
7121a6fe43
Fix build break
2022-06-30 22:26:17 +05:30
happy wang
dc2cfe78cd
add z.lua to autojump
2022-06-30 22:26:12 +05:30
Arun
96cfd3a41a
Merge pull request #1412 from N-R-K/misc_cleanups
...
Misc cleanups
2022-06-30 00:51:43 +05:30