markdown_exec 2.0.8 → 2.0.8.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/Gemfile.lock +1 -1
- data/Rakefile +1 -4
- data/bin/tab_completion.sh +2 -2
- data/lib/markdown_exec/version.rb +1 -1
- data/lib/menu.yml +0 -1
- data/lib/resize_terminal.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: bf7b742cc128a608c349ed6ff8b9f921b2e400acb269c4aba3f24d72f43cf007
|
4
|
+
data.tar.gz: cb0c023316b682f309313167a6900d037df036fa48e451b2dd781d40fed35215
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa191e7433c5dcb5c514894cfdf4bbc3c60b15c416aa7693374eafb40ad39cfeff46bcaa23eed470d8ca67804adc209b4ab6f744d62c8b3f6c4a2f336e43e0f2
|
7
|
+
data.tar.gz: 260e03667d03854c4d628465d346a1a53029cab8ea1df2614f3fa500df194adc373687e9e096735ed01c41a0bd968f2788a8a60a853c06e9d0ef540409326ab6
|
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
@@ -134,10 +134,7 @@ task :update_menu_yml do
|
|
134
134
|
}
|
135
135
|
)
|
136
136
|
|
137
|
-
File.write(MENU_YML,
|
138
|
-
"# #{MarkdownExec::APP_NAME} - #{MarkdownExec::APP_DESC} " \
|
139
|
-
"(#{MarkdownExec::VERSION})\n" +
|
140
|
-
menu_options.to_yaml)
|
137
|
+
File.write(MENU_YML, menu_options.to_yaml)
|
141
138
|
puts `stat #{MENU_YML}`
|
142
139
|
end
|
143
140
|
|
data/bin/tab_completion.sh
CHANGED
@@ -13,7 +13,7 @@ __filedirs_all()
|
|
13
13
|
}
|
14
14
|
|
15
15
|
_mde_echo_version() {
|
16
|
-
echo "2.0.8"
|
16
|
+
echo "2.0.8.1"
|
17
17
|
}
|
18
18
|
|
19
19
|
_mde() {
|
@@ -178,4 +178,4 @@ _mde() {
|
|
178
178
|
|
179
179
|
complete -o filenames -o nospace -F _mde mde
|
180
180
|
# _mde_echo_version
|
181
|
-
# echo "Updated: 2024-06-06
|
181
|
+
# echo "Updated: 2024-06-06 01:08:57 UTC"
|
data/lib/menu.yml
CHANGED
data/lib/resize_terminal.rb
CHANGED
@@ -12,7 +12,7 @@ require 'timeout'
|
|
12
12
|
# If the terminal emulator is unsupported, it prints an error message.
|
13
13
|
def resize_terminal(show_dims: false, show_rectangle: false)
|
14
14
|
# Check if running in an interactive terminal and no arguments are provided
|
15
|
-
if $stdin.tty?
|
15
|
+
if $stdin.tty?
|
16
16
|
begin
|
17
17
|
# Save the current state and send the escape sequence to get the cursor position
|
18
18
|
print "\e7\e[r\e[999;999H\e[6n\e8"
|