Mercurial > vim
view runtime/ftplugin/go.vim @ 22294:9368f75273d9 v8.2.1696
patch 8.2.1696: unused (duplicate) macros
Commit: https://github.com/vim/vim/commit/2c12f890551bbdf5605472a4d711d48a273685d7
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Sep 16 17:30:27 2020 +0200
patch 8.2.1696: unused (duplicate) macros
Problem: Unused (duplicate) macros.
Solution: Remove the macros.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 16 Sep 2020 17:45:03 +0200 |
parents | 1e8ebf870720 |
children | 99d97826842a |
line wrap: on
line source
" Vim filetype plugin file " Language: Go " Maintainer: David Barnett (https://github.com/google/vim-ft-go) " Last Change: 2014 Aug 16 if exists('b:did_ftplugin') finish endif let b:did_ftplugin = 1 setlocal formatoptions-=t setlocal comments=s1:/*,mb:*,ex:*/,:// setlocal commentstring=//\ %s let b:undo_ftplugin = 'setl fo< com< cms<' " vim: sw=2 sts=2 et