annotate runtime/ftplugin/go.vim @ 24918:f11779c1d123
v8.2.2996
patch 8.2.2996: Vim9: when debugging cannot inspect local variables
Commit: https://github.com/vim/vim/commit/b69c6fb7b423ddc4578b093cb19257cad459dfae
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jun 14 20:40:37 2021 +0200
patch 8.2.2996: Vim9: when debugging cannot inspect local variables
Problem: Vim9: when debugging cannot inspect local variables.
Solution: Make local variables available when debugging.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Mon, 14 Jun 2021 20:45:03 +0200 |
parents |
1e8ebf870720 |
children |
99d97826842a |
rev |
line source |
6153
|
1 " Vim filetype plugin file
|
|
2 " Language: Go
|
|
3 " Maintainer: David Barnett (https://github.com/google/vim-ft-go)
|
|
4 " Last Change: 2014 Aug 16
|
|
5
|
|
6 if exists('b:did_ftplugin')
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
|
11 setlocal formatoptions-=t
|
|
12
|
|
13 setlocal comments=s1:/*,mb:*,ex:*/,://
|
|
14 setlocal commentstring=//\ %s
|
|
15
|
|
16 let b:undo_ftplugin = 'setl fo< com< cms<'
|
|
17
|
|
18 " vim: sw=2 sts=2 et
|