comparison runtime/doc/usr_41.txt @ 16133:eb087f8a26a8 v8.1.1071

patch 8.1.1071: cannot get composing characters from the screen commit https://github.com/vim/vim/commit/2912abb3a2fd72074e3901c8ae1d4a77ce764675 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 29 14:16:42 2019 +0100 patch 8.1.1071: cannot get composing characters from the screen Problem: Cannot get composing characters from the screen. Solution: Add screenchars() and screenstring(). (partly by Ozaki Kiichi, closes #4059)
author Bram Moolenaar <Bram@vim.org>
date Fri, 29 Mar 2019 14:30:05 +0100
parents 0375e54f0adc
children a23c883685cb
comparison
equal deleted inserted replaced
16132:e6681a9165bf 16133:eb087f8a26a8
721 byte2line() get line number at a specific byte count 721 byte2line() get line number at a specific byte count
722 line2byte() byte count at a specific line 722 line2byte() byte count at a specific line
723 diff_filler() get the number of filler lines above a line 723 diff_filler() get the number of filler lines above a line
724 screenattr() get attribute at a screen line/row 724 screenattr() get attribute at a screen line/row
725 screenchar() get character code at a screen line/row 725 screenchar() get character code at a screen line/row
726 screenchars() get character codes at a screen line/row
727 screenstring() get string of characters at a screen line/row
726 728
727 Working with text in the current buffer: *text-functions* 729 Working with text in the current buffer: *text-functions*
728 getline() get a line or list of lines from the buffer 730 getline() get a line or list of lines from the buffer
729 setline() replace a line in the buffer 731 setline() replace a line in the buffer
730 append() append line or list of lines in the buffer 732 append() append line or list of lines in the buffer