Mercurial > vim
annotate runtime/ftplugin/hare.vim @ 32220:8f4aa24617c2 v9.0.1441
patch 9.0.1441: MacOS: Python 3 using framework do not set dll name properly
Commit: https://github.com/vim/vim/commit/b6ebe5af74a965d703eb8ee66a07c97b0bbe6e58
Author: Yee Cheng Chin <ychin.git@gmail.com>
Date: Wed Apr 5 18:24:50 2023 +0100
patch 9.0.1441: MacOS: Python 3 using framework do not set dll name properly
Problem: MacOS: Python 3 using framework do not set dll name properly.
Solution: Use the framework prefix. (Yee Cheng Chin, closes https://github.com/vim/vim/issues/12189)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 05 Apr 2023 19:30:07 +0200 |
parents | 1e91e26ceebf |
children | 02939ae3aaca |
rev | line source |
---|---|
30547 | 1 " Vim filetype plugin |
2 " Language: Hare | |
3 " Maintainer: Amelia Clarke <me@rsaihe.dev> | |
4 " Previous Maintainer: Drew DeVault <sir@cmpwn.com> | |
5 " Last Updated: 2022-09-21 | |
6 | |
7 " Only do this when not done yet for this buffer | |
8 if exists('b:did_ftplugin') | |
9 finish | |
10 endif | |
11 | |
12 " Don't load another plugin for this buffer | |
13 let b:did_ftplugin = 1 | |
14 | |
15 setlocal noexpandtab | |
16 setlocal tabstop=8 | |
17 setlocal shiftwidth=0 | |
18 setlocal softtabstop=0 | |
19 setlocal textwidth=80 | |
20 setlocal commentstring=//\ %s | |
21 | |
22 " Set 'formatoptions' to break comment lines but not other lines, | |
23 " and insert the comment leader when hitting <CR> or using "o". | |
24 setlocal fo-=t fo+=croql | |
25 | |
26 compiler hare | |
27 " vim: tabstop=2 shiftwidth=2 expandtab |