summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-10-10update version and changelogCanop
2020-10-10use PATH instead of absolute paths for all verbsScott Olson
The `chmod` verb was already using PATH, but others were using absolute paths that don't necessarily exist on every Linux distro.
2020-10-07version 1.0.3v1.0.3Canop
2020-10-07change the syntax of `cols_order` in confCanop
2020-10-07fix left key moving the cursor to start of input (instead of just one char left)Canop
2020-10-06Merge remote-tracking branch 'origin/master'Canop
2020-10-06minor doc clarificationCanop
2020-10-04fix typo in readmeCanop
2020-10-04version 1.0.2v1.0.2Canop
2020-10-04Merge pull request #286 from Canop/search-modes-helpCanop
Search modes help
2020-10-04Merge branch 'master' into search-modes-helpCanop
2020-10-04list the search modes and their main prefix in helpCanop
2020-10-03add Hacktoberfest guidelinesCanop
2020-10-03Merge pull request #285 from Canop/content-regexCanop
`cr/` prefix allows a regex based search on file content
2020-10-03`cr/` prefix allows a regex based search on file contentCanop
2020-09-30version 1.0.1v1.0.1Canop
2020-09-30image preview: cache resized image to avoid useless resizesCanop
2020-09-30remove useless displays from sequence executionCanop
2020-09-30refactor: make Screen CopyCanop
It's now only the dimensions, it's tiny.
2020-09-30on ctrl-w (:close_panel_cancel) close preview rather than appCanop
i.e. choose to close the preview instead of the non preview when there are only two panels left and one of them is the preview
2020-09-29only count non preview panels when checking for other-panel-pathCanop
i.e. it's now possible to use verbs like :cpp even when a preview panel is open
2020-09-29Merge pull request #284 from Canop/verb-no-waitCanop
refactor verb initialization from conf
2020-09-29refactor verb initialization from confCanop
removing the useless step of VerbConf and VerbConfExecutionType
2020-09-29list of verbs is now searchableCanop
2020-09-28add the clipboard feature to the official release on win & linuxCanop
2020-09-28help page lists optional features enabled at compilationCanop
2020-09-28fix compilation for androidCanop
2020-09-27fix opening of link of linkCanop
Fix #280
2020-09-24Merge pull request #283 from Canop/sequence-verbsCanop
Sequence verbs
2020-09-24allow cmd sequences in verb executionCanop
The syntax changed. Instead of `execution` (which is still allowed), `internal`, `external` and `cmd` are now prefered. The syntax of the `cmd` property is the same than the `--cmd` launch argument, with the added possibility to have dynamic parts. Two examples of sequence based verbs: [[verbs]] name = "myplaces" key = "ctrl-g" cmd = ":focus ~;:!focus /" [[verbs]] name = "backup" invocation = "bu {name}" cmd = ":cp {file}-back_{name};:!focus {file}-back_{name}" apply_to = "directory" Fix #277
2020-09-22refactor: move the invocation pattern from execution to verbCanop
2020-09-09ctrl-v now inserts the clipboard content in the inputCanop
when the "clipboard" feature is on. This behaviour may be mapped to another key, it's based on the new `:input_paste` verb
2020-09-08don't add :copy_path in builtins when the clipboard feature is offCanop
2020-09-08fix cross-compilation - define a "clipboard" featureCanop
2020-09-07a few fixes to the :copy_path implementationCanop
It still doesn't cross compile to windows, though
2020-09-07Merge branch 'clipboard' of https://github.com/asdf8dfafjk/broot into ↵Canop
asdf8dfafjk-clipboard
2020-09-07fix windows compilationCanop
(which was broken by the previous commit)
2020-09-06identify nodes with (inode, dev) instead of just inode in size summingCanop
thus removing the theoretical risk of not counting some files because of an inode number found on two devices
2020-09-06don't gitignore files when not in a git repositoryCanop
.gitignore files, including the global one, aren't used anymore when not in a git repository Fix #274
2020-09-02add a README in website/docs to make it clearer it's some sourceCanop
There's a risk of confusing this directory containing markdown file with a directly readable documentation. Exhibit PR #273
2020-08-31Version 1.0.0v1.0.0Canop
2020-08-31Draft: Clipboard support, copy to clipboard_
2020-08-23version 0.20.3v0.20.3Canop
2020-08-23Fix files being called huge while they were only very bigCanop
(which was mean)
2020-08-23fix a few problems related to tabulation renderingCanop
2020-08-22externalize file size formatting into another crateCanop
(for easier reuse in my other projects)
2020-08-20mention how to set the pane name in tmuxCanop
Fix #270
2020-08-19update changelogCanop
2020-08-19version 0.20.2v0.20.2Canop
2020-08-19fix esc key not removing the filter in text previewCanop