]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Adds function flake8#ShowError() to show the error message of the line under the...
authorRahul <skvrahul@gmail.com>
Mon, 30 Mar 2020 06:41:22 +0000 (12:11 +0530)
committerRahul <skvrahul@gmail.com>
Mon, 30 Mar 2020 06:41:22 +0000 (12:11 +0530)
autoload/flake8.vim

index 6b220f2130d825755d1681f96bf792ee678c8a21..13fe7687bb3054b0560f167e31a43b8ad69c9ea9 100644 (file)
@@ -20,7 +20,7 @@ function! flake8#Flake8UnplaceMarkers()
     call s:Warnings()
 endfunction
 
-function! flake8#ShowErrorMessage()
+function! flake8#Flake8ShowError()
     call s:ShowErrorMessage()
 endfunction
 
@@ -106,8 +106,6 @@ function! s:Setup()  " {{{
     let s:markerdata['C'].marker = s:flake8_complexity_marker
     let s:markerdata['N'].marker = s:flake8_naming_marker
 
-
-
 endfunction  " }}}
 
 "" do flake8
@@ -170,8 +168,10 @@ function! s:Flake8()  " {{{
     let l:has_results=results != []
     if l:has_results
        " save line number of each error message        
-        for result in l:results:
-            s:resultDict[result.lnum] = result.text
+        for result in l:results
+           let linenum = result.lnum
+            let s:resultDict[linenum] = result.text
+       endfor
 
         " markers
         if !s:flake8_show_in_gutter == 0 || !s:flake8_show_in_file == 0
@@ -198,6 +198,12 @@ function! s:Flake8()  " {{{
     endif
 endfunction  " }}}
 
+
+function! s:MakeMap(results)  " {{{
+    for result in a:results
+    endfor
+endfunction  " }}}
+
 "" markers
 function! s:PlaceMarkers(results)  " {{{
     " in gutter?
@@ -274,8 +280,8 @@ function! s:ShowErrorMessage()  " {{{
 
     " if there is a message on the current line,
     " then echo it 
-    if has_key(s:matchDict, s:cursorPos[1])
-       let l:errorText = get(s:matchDict, l:cursorPos[1]) 
+    if has_key(s:resultDict, l:cursorPos[1])
+       let l:errorText = get(s:resultDict, l:cursorPos[1]) 
        echo strpart(l:errorText, 0, &columns-1)
        let b:showing_message = 1
     endif