File tree Expand file tree Collapse file tree 1 file changed +4
-12
lines changed Expand file tree Collapse file tree 1 file changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -57,21 +57,15 @@ return {
5757 local props = {
5858 [' Condition' ] = {
5959 value = bp .condition ,
60- setter = function (v )
61- bp .condition = v
62- end ,
60+ setter = function (v ) bp .condition = v end ,
6361 },
6462 [' Hit Condition' ] = {
6563 value = bp .hitCondition ,
66- setter = function (v )
67- bp .hitCondition = v
68- end ,
64+ setter = function (v ) bp .hitCondition = v end ,
6965 },
7066 [' Log Message' ] = {
7167 value = bp .logMessage ,
72- setter = function (v )
73- bp .logMessage = v
74- end ,
68+ setter = function (v ) bp .logMessage = v end ,
7569 },
7670 }
7771 local menu_options = {}
@@ -80,9 +74,7 @@ return {
8074 end
8175 vim .ui .select (menu_options , {
8276 prompt = ' Edit Breakpoint' ,
83- format_item = function (item )
84- return (' %s: %s' ):format (item , props [item ].value )
85- end ,
77+ format_item = function (item ) return (' %s: %s' ):format (item , props [item ].value ) end ,
8678 }, function (choice )
8779 if choice == nil then
8880 -- User cancelled the selection
You can’t perform that action at this time.
0 commit comments