annotate src/proto/if_ruby.pro @ 7480:a49163681559
v7.4.1042
commit https://github.com/vim/vim/commit/ed767a2073ef150971b0439a58e7ee582af6984e
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 3 22:49:16 2016 +0100
patch 7.4.1042
Problem: g-CTRL-G shows the word count, but there is no way to get the word
count in a script.
Solution: Add the wordcount() function. (Christian Brabandt)
author |
Christian Brabandt <cb@256bit.org> |
date |
Sun, 03 Jan 2016 23:00:04 +0100 |
parents |
c9820396afb9 |
children |
21b0a39d13ed |
rev |
line source |
7
|
1 /* if_ruby.c */
|
1125
|
2 int ruby_enabled __ARGS((int verbose));
|
|
3 void ruby_end __ARGS((void));
|
|
4 void ex_ruby __ARGS((exarg_T *eap));
|
|
5 void ex_rubydo __ARGS((exarg_T *eap));
|
|
6 void ex_rubyfile __ARGS((exarg_T *eap));
|
|
7 void ruby_buffer_free __ARGS((buf_T *buf));
|
|
8 void ruby_window_free __ARGS((win_T *win));
|
4369
|
9 void vim_ruby_init __ARGS((void *stack_start));
|
7
|
10 /* vim: set ft=c : */
|