Steven Arcangeli
5fa528f552
chore: refactor benchmarking to use benchmark.nvim
2024-11-21 21:39:05 -08:00
Steven Arcangeli
3fa3161aa9
feat: config option to disable previewing a file
2024-11-21 17:36:40 -08:00
Steven Arcangeli
5acab3d8a9
fix: image.nvim previews with preview_method=scratch
2024-11-21 17:36:22 -08:00
Github Actions
bf81e2a79a
[docgen] Update docs
...
skip-checks: true
2024-11-21 05:06:28 +00:00
cdmill
81cc9c3f62
feat: option to quite vim if oil is closed as last buffer ( #491 )
...
* feat: auto-quit vim if oil is closed as last buffer
* rename auto_close_vim to auto_close_last_buffer
* rework actions.close to be more like actions.cd
* fix: configure close action correctly
* add type annotation, future proofing
* fix: typo
* fix: typo
* refactor: better type annotations and backwards compatibility
---------
Co-authored-by: Steven Arcangeli <506791+stevearc@users.noreply.github.com>
2024-11-20 21:06:09 -08:00
Jalal El Mansouri
21705a1deb
feat: use scratch buffer for file previews ( #467 )
...
* Initial implementation of scratch based preview
* Fix call to buf is valid in loop
* Fixing call to be made only from the main event loop
* Improve handling of large files from @pkazmier
* Better error handling and simplifying the code
* Default to old behavior
* Add documentation
* Fix readfile
* Fix the configuration
* refactor: single config enum and load real buffer on BufEnter
* doc: regenerate documentation
---------
Co-authored-by: Steven Arcangeli <stevearc@stevearc.com>
2024-11-19 17:24:24 -08:00
Steven Arcangeli
8ea40b5506
fix: cursor sometimes does not hover previous file
2024-11-14 22:21:11 -08:00
Steven Arcangeli
651299a6ca
doc: trashing on windows works now
2024-11-14 19:47:50 -08:00
Steven Arcangeli
c96f93d894
perf: optimize rendering cadence
2024-11-14 19:29:22 -08:00
Steven Arcangeli
792f0db6ba
perf: only sort entries after we have them all
2024-11-14 19:29:22 -08:00
Steven Arcangeli
4de30256c3
perf: replace vim.endswith and vim.startswith with string.match
2024-11-14 19:29:22 -08:00
Steven Arcangeli
01b0b9d8ef
perf: change default view_options.natural_order behavior to disable on large directories
2024-11-14 19:29:22 -08:00
Steven Arcangeli
7d4e62942f
test: add harness for measuring performance
2024-11-14 19:29:21 -08:00
Steven Arcangeli
0472d9296a
lint: fix typechecking for new LuaLS version
2024-11-13 08:58:16 -08:00
Github Actions
8735d185b3
[docgen] Update docs
...
skip-checks: true
2024-11-12 18:38:53 +00:00
Micah Halter
bbeed86bde
feat: add win_options to preview_win ( #514 )
2024-11-12 10:38:35 -08:00
Steve Walker
c23fe08e05
feat: disable preview for large files ( #511 )
...
* feat: disable preview for large files
fix: update oil.PreviewWindowConfig
* refactor: remove unnecessary shim in config.lua
* refactor: revert changes to shim
---------
Co-authored-by: Steve Walker <65963536+etherswangel@users.noreply.github.com>
Co-authored-by: Steven Arcangeli <506791+stevearc@users.noreply.github.com>
2024-11-12 08:24:39 -08:00
github-actions[bot]
50c4bd4ee2
chore(master): release 2.13.0 ( #478 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-11-10 19:18:46 -08:00
Github Actions
6e754e6699
[docgen] Update docs
...
skip-checks: true
2024-11-11 00:40:33 +00:00
Steven Arcangeli
3499e26ef4
chore: rework Makefile to not depend on direnv
2024-11-10 16:38:45 -08:00
Steven Arcangeli
2f5d4353ee
doc: improve type annotations for oil.open_preview
2024-11-10 16:07:29 -08:00
Steven Arcangeli
eb5497f0ac
refactor: rename 'preview' config to 'preview_win'
2024-11-10 15:57:31 -08:00
Steven Arcangeli
1f5b002270
refactor: rename action preview window to 'confirmation' window
2024-11-10 15:57:27 -08:00
Steven Arcangeli
621f8ba4fa
fix: guard against nil keymaps
2024-11-09 22:31:35 -08:00
Steven Arcangeli
709403ccd6
fix: don't deep merge keymaps ( #510 )
2024-11-09 22:28:24 -08:00
Foo-x
52cc8a1fb3
fix: sort keymap help entries by description ( #506 )
...
Closes #376
2024-10-30 08:53:36 -07:00
Foo-x
42333bb46e
fix: add trailing slash to directories on yank_entry ( #504 )
...
* feat: add trailing slash on yank_entry
Closes #503
* style: format
2024-10-28 10:55:25 -07:00
Yu Guo
cca1631d5e
fix: actions.preview accepts options ( #497 )
...
* fix: pass opts to actions.preview
* add opts type to action.preview
* run generate.py script
2024-10-25 09:08:39 -07:00
Yu Guo
28aca0c1f5
chore: add __pycache__ to gitignore ( #498 )
...
* add __pycache__ to gitignore
* doc: fix typo
---------
Co-authored-by: Steven Arcangeli <506791+stevearc@users.noreply.github.com>
2024-10-25 09:07:11 -07:00
Github Actions
39dbf87586
[docgen] Update docs
...
skip-checks: true
2024-10-16 02:22:43 +00:00
Philipp Oeschger
5d2dfae655
feat: config option to customize floating window title ( #482 )
...
* replace cwd path in actual path
* move get_title to utils
* add documentation
* rename
* add method doc
* add comment
* fallback to 0 for winid
* add missing property definition for relative_win_title
* only replace when at the start of the path
* simplify
* minor change
* add entry point to customize floating window title for oil-buffer
* remove config parameter
* cleanup
* add documentation
* move get_win_title to top and pass winid as parameter
* add get_win_title to type definition for oil.setup
* remove empty line
* adjust comment
---------
Co-authored-by: Philipp Oeschger <philippoeschger@Philipps-Air.fritz.box>
2024-10-15 22:22:31 -04:00
staticssleever668
ccab9d5e09
fix: only map ~ for normal mode ( #484 )
...
Allows to switch character case with ~ (tilde) in visual mode while
preserving existing ~ :tcd functionality.
Related to [1].
[1]: https://github.com/stevearc/oil.nvim/issues/397 "bug: ~ not respected"
2024-10-03 20:51:55 -07:00
Éric NICOLAS
9e6fb844fe
doc: Update links to FreeDesktop's Trash spec ( #490 )
...
Keeping it pinned to 1.0
Fixes #489
2024-09-30 22:11:09 -07:00
Steven Arcangeli
581c729805
doc: disable some type warnings from new LuaLS release
2024-09-30 22:10:36 -07:00
Steven Arcangeli
1360be5fda
lint: stricter type checking
2024-09-17 13:00:48 -07:00
csponge
f60bb7f793
feat: config option to disable lsp file methods ( #477 )
...
* added config option to enable or disable lsp_file_methods
* refactor: rename enable -> enabled
---------
Co-authored-by: Steven Arcangeli <stevearc@stevearc.com>
2024-09-11 19:41:46 -07:00
Github Actions
665bf2edc9
[docgen] Update docs
...
skip-checks: true
2024-09-11 15:45:10 +00:00
Steven Arcangeli
eadc3ed42e
doc: add recipe to show current directory in the winbar
2024-09-11 08:44:45 -07:00
github-actions[bot]
1eb9fb35a4
chore(master): release 2.12.2 ( #472 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-09-10 12:03:08 -07:00
Steven Arcangeli
b05374428e
fix: wrap git rm callback in schedule_wrap ( #475 )
2024-09-10 11:44:15 -07:00
Steven Arcangeli
1fe476daf0
doc: more and better type annotations
2024-08-30 17:50:09 -07:00
Steven Arcangeli
d10e7f442f
doc: fix recipe for hiding gitignored files
2024-08-30 17:10:53 -07:00
Github Actions
0dc98d36b5
[docgen] Update docs
...
skip-checks: true
2024-08-29 16:26:36 +00:00
Micah Halter
85637c1e63
doc(recipes): improve git integrated hidden files recipe ( #470 )
2024-08-29 09:26:19 -07:00
csponge
30e0438ff0
fix: ensure win_options are being set on correct window ( #469 )
...
* Added check for filetype before setting win_options in initialize
* refactor: use nvim_buf_call to set window options
---------
Co-authored-by: Steven Arcangeli <506791+stevearc@users.noreply.github.com>
2024-08-28 17:54:03 -07:00
Micah Halter
0fcd1263a2
perf(view): avoid running is_hidden_file when show_hidden is set ( #471 )
2024-08-28 17:13:57 -07:00
github-actions[bot]
4f3c6780ff
chore(master): release 2.12.1 ( #468 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-08-25 21:03:15 -07:00
Steven Arcangeli
70337eb77f
fix: gracefully handle trashing file that does not exist
2024-08-25 20:51:27 -07:00
Steven Arcangeli
349bca8c3e
fix: process deletes in dir before moving dir
2024-08-25 20:46:46 -07:00
github-actions[bot]
a632c898fb
chore(master): release 2.12.0 ( #434 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-08-16 21:37:00 -07:00