如何在 react-ace-editor 中设置装订线的起始行号?
How to set start line number for gutter in react-ace-editor?
<CodeEditor name='editor'
mode='python'
width='100%'
readOnly={true}
showGutter={true}
defaultValue={'def custom_code(input_parameter):'}
value={'def custom_code(input_parameter):'}/>
对于上面的编辑器,我需要代码行号从第 10 行开始。在 react-ace-editor 中有什么方法可以做到这一点吗??有没有设置行号的道具?
setOptions={{firstLineNumber: 10}}
会做的:)
<CodeEditor name='editor'
mode='python'
width='100%'
readOnly={true}
showGutter={true}
defaultValue={'def custom_code(input_parameter):'}
value={'def custom_code(input_parameter):'}/>
对于上面的编辑器,我需要代码行号从第 10 行开始。在 react-ace-editor 中有什么方法可以做到这一点吗??有没有设置行号的道具?
setOptions={{firstLineNumber: 10}}
会做的:)