exfuz 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -6
  3. data/lib/exfuz/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9b0a899fb5743a6cd65c434e4be0853019ddcf1856bdd27515518fe5a04e9716
4
- data.tar.gz: a8d191ed60ffcba306c483027351176b90a800b494017ca049c4a9382d68ea01
3
+ metadata.gz: a9cc56a7f10f70fc3802e39a3a49418c2e9f204a2499da7b68097a1d717062c6
4
+ data.tar.gz: 1c8019f3064ba30ec23ad26ca50ff7eb1c22d4f701cbcea57b8e6cde2894cc9e
5
5
  SHA512:
6
- metadata.gz: 879270cc6ab2a5e08d979d9d88995362f09ea5be623f9a9b95d54aca8e4fe35ea997625da92bfb56740d31c8a44edbe781255ba7d514bd793e086b6ffad31006
7
- data.tar.gz: 3eebc206ab2ad1780a4c9254642fe33e8635ed4f8b09cb083c775c8fe10eb9e15d25ab875067acac4c9f3f9a10944450b77e29275a5f89e9e29cc76776f719fe
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 | 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 |
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Exfuz
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exfuz
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - wata00913