Returns the number of file in the iterable list of files |file_list| which are not curerntly open in visible windows
( file_list )
| 942 | |
| 943 | |
| 944 | def _GetNumNonVisibleFiles( file_list ): |
| 945 | """Returns the number of file in the iterable list of files |file_list| which |
| 946 | are not curerntly open in visible windows""" |
| 947 | return len( |
| 948 | [ f for f in file_list |
| 949 | if not BufferIsVisible( GetBufferNumberForFilename( f ) ) ] ) |
| 950 | |
| 951 | |
| 952 | def _OpenFileInSplitIfNeeded( filepath ): |
no test coverage detected