Mercurial > vim
annotate src/proto/if_ruby.pro @ 16483:393dd420a753 v8.1.1245
patch 8.1.1245: ":copen 10" sets height in full-height window
commit https://github.com/vim/vim/commit/36d502225c3ec5e8b30771d58ee20171ce564b2f
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu May 2 20:17:40 2019 +0200
patch 8.1.1245: ":copen 10" sets height in full-height window
Problem: ":copen 10" sets height in full-height window. (Daniel Hahler)
Solution: Don't set the height if the quickfix window is full height.
(closes #4325)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 02 May 2019 20:30:06 +0200 |
parents | 518f44125207 |
children |
rev | line source |
---|---|
7 | 1 /* if_ruby.c */ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
4369
diff
changeset
|
2 int ruby_enabled(int verbose); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
4369
diff
changeset
|
3 void ruby_end(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
4369
diff
changeset
|
4 void ex_ruby(exarg_T *eap); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
4369
diff
changeset
|
5 void ex_rubydo(exarg_T *eap); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
4369
diff
changeset
|
6 void ex_rubyfile(exarg_T *eap); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
4369
diff
changeset
|
7 void ruby_buffer_free(buf_T *buf); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
4369
diff
changeset
|
8 void ruby_window_free(win_T *win); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
4369
diff
changeset
|
9 void vim_ruby_init(void *stack_start); |
16103
518f44125207
patch 8.1.1056: no eval function for Ruby
Bram Moolenaar <Bram@vim.org>
parents:
7668
diff
changeset
|
10 void do_rubyeval(char_u *str, typval_T *rettv); |
7 | 11 /* vim: set ft=c : */ |