Mercurial > vim
annotate runtime/ftplugin/fennel.vim @ 29071:b90bca860b5a v8.2.5057
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Commit: https://github.com/vim/vim/commit/6574577cacd393ab7591fc776ea060eebc939e55
Author: Paul Ollis <paul@cleversheep.org>
Date: Sun Jun 5 16:55:54 2022 +0100
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Problem: Using gettimeofday() for timeout is very inefficient.
Solution: Set a platform dependent timer. (Paul Ollis, closes https://github.com/vim/vim/issues/10505)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 05 Jun 2022 18:00:08 +0200 |
parents | 4d76b3e07c07 |
children | 635de73eeb4c |
rev | line source |
---|---|
28620 | 1 " Vim filetype plugin file |
2 " Language: Fennel | |
3 " Maintainer: Gregory Anders <greg[NOSPAM]@gpanders.com> | |
4 " Last Update: 2022 Apr 20 | |
5 | |
6 if exists('b:did_ftplugin') | |
7 finish | |
8 endif | |
9 let b:did_ftplugin = 1 | |
10 | |
11 setlocal commentstring=;%s | |
12 setlocal comments=:;;,:; | |
13 setlocal formatoptions-=t | |
14 setlocal suffixesadd=.fnl | |
15 setlocal lisp | |
16 setlocal lispwords=accumulate,collect,do,doto,each,eval-compiler,fn,for,icollect,lambda,let,macro,macros,match,match-try,when,while,with-open | |
17 | |
18 let b:undo_ftplugin = 'setlocal commentstring< comments< formatoptions< suffixesadd< lisp< lispwords<' |