exfuz 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +10 -6
- data/lib/exfuz/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a9cc56a7f10f70fc3802e39a3a49418c2e9f204a2499da7b68097a1d717062c6
|
|
4
|
+
data.tar.gz: 1c8019f3064ba30ec23ad26ca50ff7eb1c22d4f701cbcea57b8e6cde2894cc9e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7cbb98f4ff28c777b8ac3b2ba938920332784256e75fbf6e76f1c9c5ff82445a93c6e2ef6dea7f7762fcf6b53adab18868beca0d6257eab01f9c1a4c38b2e17b
|
|
7
|
+
data.tar.gz: 53c472f72c5bc012509bc44a9b789b6d46b9fe2f4695589fc232b7cfdaa54fa6545284b8c8c94bae41f38c39b5a80ab0f0f17af2aca1ce9d5d2d8eb44f32973f
|
data/README.md
CHANGED
|
@@ -70,13 +70,17 @@ The priority for reading the configuration is as follows.
|
|
|
70
70
|
2. `~/.config/exfuz/.exfuz.json`
|
|
71
71
|
3. Default settings
|
|
72
72
|
|
|
73
|
-
| Option | Values / Default Value
|
|
74
|
-
|
|
75
|
-
| book_name_path_type | [”relative”, “absolute”] </br> Default Value: "relative"
|
|
76
|
-
| cell_position_format | [”index”, “address”] </br> Default Value: "address"
|
|
77
|
-
| line_sep | Arbitary character </br> Default Value: ":"
|
|
78
|
-
| split_new_line | [true, false] </br> Default Value: false
|
|
73
|
+
| Option | Values / Default Value | Description |
|
|
74
|
+
|---------------------------|-----------------------------------------------------------------|------------------------------------------------------------------------------|
|
|
75
|
+
| book_name_path_type | [”relative”, “absolute”] </br> Default Value: "relative" | Format to display book name. </br> relative path or absolute path. |
|
|
76
|
+
| cell_position_format | [”index”, “address”] </br> Default Value: "address" | Format to display cell position </br> ex) index: $3$4, address: $C$4 |
|
|
77
|
+
| line_sep | Arbitary character </br> Default Value: ":" | Delimiter char </br> ex) book1.xlsx:sheet1:$A$1:value if delimiter char is : |
|
|
78
|
+
| split_new_line | [true, false] </br> Default Value: false | Whether to escape line breaks in cells |
|
|
79
|
+
| jump_positions | [true, false] </br> Default Value: false | Whether to jump to the selected item[^jump_note]
|
|
79
80
|
| fuzzy_finder_command_type | ["fzf", "peco", "percol", "sk"][^2] </br> Default Value: "fzf" | Which fuzzy finder tool to use |
|
|
81
|
+
|
|
82
|
+
[^jump_note]:In the current version, the jump function is only available in wsl.
|
|
83
|
+
|
|
80
84
|
[^2]: Value to fuzzy finder tool is as followeds. </br>
|
|
81
85
|
・"fzf": fzf</br>
|
|
82
86
|
・"peco": peco</br>
|
data/lib/exfuz/version.rb
CHANGED