Skip to content

Commit

Permalink
chore: release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dzfrias committed Jun 26, 2023
1 parent 1257916 commit 91ed662
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "projectable"
authors = ["Diego Frias <[email protected]>"]
version = "1.0.0"
version = "1.1.0"
description = """
projectable is a highly configurable TUI project manager. You can do everything
your project needs from a comfortable and smooth interface, instead of exploring
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Here are just a few builtin things projectable can do:
To get started, you can use one of the following installation methods:

### Minimum Supported Rust Version (MSRV)

When installing from Cargo or building from source, the MSRV for `projectable` is currently 1.70.x

<details>
Expand Down Expand Up @@ -103,7 +104,8 @@ customization, see [CONFIG.md](./extras/CONFIG.md).
| `n` | New file |
| `N` | New directory |
| `d` | Delete file/directory |
| `r` | Rename/move file |
| `r` | Rename file |
| `R` | Move file |
| `e` | Execute command (see [syntax](#command-syntax)) |
| `ctrl-c` | Cancel command(s) |
| `v` | File-specific command |
Expand All @@ -113,9 +115,9 @@ customization, see [CONFIG.md](./extras/CONFIG.md).
| `ctrl-d` | Move preview down |
| `ctrl-u` | Move preview up |
| `t` | Toggle git diff view |
| `T` | Filter for modified files |
| `T` | Toggle filter for modified files |
| `.` | Toggle hidden files |
| `m` | Mark file |
| `m` | Toggle mark on file |
| `M` | Open marks |

You can make your own keybinds, too! This is of course done in the configuration
Expand Down
18 changes: 10 additions & 8 deletions extras/CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ to run with `Cargo.*` if you'd like this prompt to appear in lock file as well.

Many of the default keybinds can be changed in projectable.

For example, if you'd like to change the default up/down selection keys, you
could do so with:
For example, if you'd like to change the default up/down selection keys and
still keep the defaults, you could do so with:

```toml
up = "up"
down = "down"
up = ["k", "up"]
down = ["j", "down"]
```

Changing the new file key could look like this:
Expand Down Expand Up @@ -134,6 +134,7 @@ project_roots = [".git"]
special_commands = {}
# Items of the form `KEY = COMMAND`
commands = {}
esc_to_close = true

# Keys
up = "k"
Expand Down Expand Up @@ -182,11 +183,12 @@ up_three = "ctrl-p"
exec_cmd = "e"
delete = "d"
search = "/"
# Clear filters (like the git filter)
# Full refresh of tree
clear = '\'
new_file = "n"
new_dir = "N"
rename = "r"
move = "R"
git_filter = "T"
diff_mode = "t"
open_all = "o"
Expand All @@ -212,10 +214,10 @@ border_color = { color = "blue" }

info = { color = "white" }
error = { color = "red" }
debug = { color = "green" }
warn = { color = "yellow" }

# Only shown when run with the --debug option
warn = { color = "red" }
debug = { color = "green" }
trace = { color = "magenta" }

[marks]
Expand All @@ -224,6 +226,6 @@ relative = true
open = "M"
delete = "d"

# Color of marks in marks window
# Color of marks in marks window, NOT in filetree
mark_style = { color = "white" }
```
1 change: 1 addition & 0 deletions src/config_defaults/unix.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ clear = '\'
new_file = "n"
new_dir = "N"
rename = "r"
move = "R"
git_filter = "T"
diff_mode = "t"
open_all = "o"
Expand Down
1 change: 1 addition & 0 deletions src/config_defaults/windows.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ clear = '\'
new_file = "n"
new_dir = "N"
rename = "r"
move = "R"
git_filter = "T"
diff_mode = "t"
open_all = "o"
Expand Down

0 comments on commit 91ed662

Please sign in to comment.