sqlsnip 0.2.2 → 0.2.3

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/exe/sqlsnip +16 -3
  3. data/lib/sqlsnip/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 540b170ccb1ae5a38045089f209f9b373ab46695e2c96dbb3eb40450789cb36f
4
- data.tar.gz: ccebd8ecef866998db72f924a1c7ad06677d86eaf1d013b3eca6d86459dd9973
3
+ metadata.gz: b168b2c36faf3caa780d2ad91300cd40c8a55ea762c13a0417334a8e0819f0d0
4
+ data.tar.gz: 473e5732ced5119690d24204b1a02e1cf91a36e1793d70fa6114a0dc976bebe9
5
5
  SHA512:
6
- metadata.gz: 1e3ffd644aedf35c9ab808b0f1184b77e1c27b86f8c5b7cd3566da050959e250af8cad0ae7330090dff1b790269205afbe90dcf7bcf35fba91aa444d6ca28fce
7
- data.tar.gz: fa073d37e19ce9cbcc3835777fa94dacac2c9426a3a4ed864cf5958b4ae0209ceddf0fab47e55e7fba53a3162d247d2f256520f162479bf1969033d591824307
6
+ metadata.gz: 994efc1c387cd1a2b35f0e21e20fb43aa9e912852f87a6f064e7889019ae5a5bb483faea69af18374fe11cb19b24ebc0fad38b80dca3355c14b309cd6d568b58
7
+ data.tar.gz: b16c28f4e078aab3c20a7c28c8eabd0f6d577071e30305a021d4a4b618649db23c0b138fd41e15f00cda1aec2a23d1960bb93cd5f7de57274f01e46f8b93a9c0
data/exe/sqlsnip CHANGED
@@ -68,14 +68,14 @@ SPEC = %(
68
68
 
69
69
  ...or to just replace the current selected text with drop statements
70
70
 
71
- \\function! ReplaceSqlRange() range " ChatGPT
71
+ \\function! ReplaceSqlRange() range
72
72
  let start_line = line("'<")
73
73
  let end_line = line("'>")
74
74
  let save_cursor = getpos('.')
75
75
  let range_text = getline(start_line, end_line)
76
76
  let path = expand('%:p')
77
77
  let shell_output = system('exe/sqlsnip -ds"" ' . path)
78
- let shell_output_lines = split(shell_output, "\n")
78
+ let shell_output_lines = split(shell_output, "\\n")
79
79
  call deletebufline('%', start_line, end_line)
80
80
  call append(start_line - 1, shell_output_lines)
81
81
  call setpos('.', save_cursor)
@@ -83,7 +83,6 @@ SPEC = %(
83
83
 
84
84
  " CTRL+I - insert drop statements
85
85
  map <C-I> :call ReplaceSqlRange()<CR>
86
-
87
86
  )
88
87
 
89
88
  opts, args = ShellOpts.process(SPEC, ARGV)
@@ -101,3 +100,17 @@ if !opts.drop_only?
101
100
  puts source.lines
102
101
  end
103
102
 
103
+ __END__
104
+ \\function! ReplaceSqlRange() range
105
+ let start_line = line("'<")
106
+ let end_line = line("'>")
107
+ let save_cursor = getpos('.')
108
+ let range_text = getline(start_line, end_line)
109
+ let path = expand('%:p')
110
+ let shell_output = system('exe/sqlsnip -ds"" ' . path)
111
+ let shell_output_lines = split(shell_output, "\n")
112
+ call deletebufline('%', start_line, end_line)
113
+ call append(start_line - 1, shell_output_lines)
114
+ call setpos('.', save_cursor)
115
+ endfunction
116
+
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Sqlsnip
4
- VERSION = "0.2.2"
4
+ VERSION = "0.2.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqlsnip
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Claus Rasmussen