Update marked_text.py
This commit is contained in:
		@@ -9,9 +9,15 @@ class command():
 | 
			
		||||
          (environment['commandBuffer']['Marks']['2'] == None):
 | 
			
		||||
            environment['runtime']['outputManager'].presentText(environment, "two marks needed", interrupt=True)
 | 
			
		||||
            return environment
 | 
			
		||||
        
 | 
			
		||||
        marked = mark_utils.getTextBetweenMarks(environment['commandBuffer']['Marks']['1'], environment['commandBuffer']['Marks']['2'], environment['screenData']['newContentText'].split('\n'))
 | 
			
		||||
        print(marked)
 | 
			
		||||
 | 
			
		||||
        # use the last first and the last setted mark as range
 | 
			
		||||
        startMark = environment['commandBuffer']['Marks']['1'].copy()
 | 
			
		||||
        endMark = environment['commandBuffer']['Marks']['2'].copy() 
 | 
			
		||||
        if environment['commandBuffer']['Marks']['3'] != None:
 | 
			
		||||
            endMark = environment['commandBuffer']['Marks']['3'].copy()    
 | 
			
		||||
 | 
			
		||||
        marked = mark_utils.getTextBetweenMarks(startMark, endMark, environment['screenData']['newContentText'].split('\n'))
 | 
			
		||||
 | 
			
		||||
        if marked.strip(" \t\n") == '':
 | 
			
		||||
            environment['runtime']['outputManager'].presentText(environment, "blank", soundIcon='EmptyLine', interrupt=True)
 | 
			
		||||
        else:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user