Function used to sort the matches.
(x: str)
| 744 | """ |
| 745 | |
| 746 | def _cmpl_sort(x: str) -> tuple[bool, str]: |
| 747 | """ |
| 748 | Function used to sort the matches. |
| 749 | """ |
| 750 | # put parameters above everything in completion |
| 751 | return ( |
| 752 | x[-1] != "=", |
| 753 | x, |
| 754 | ) |
| 755 | |
| 756 | for completer in completers: |
| 757 | try: |
nothing calls this directly
no outgoing calls
no test coverage detected