Files
ucxl-vscode/examples/ucxl_example.py
anthonyrawlins 8d40cd98ac Initial commit - UCXL VS Code extension
- Added UCXL VS Code extension with syntax highlighting
- Implemented language configuration and grammar definitions
- Created extension package with examples and documentation
- Added syntax highlighting for UCXL code structures

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-27 09:39:31 +10:00

18 lines
340 B
Python

import posixpath
def ucxl_path_join(*args):
"""
Join multiple path components into a single UCXL path.
Args:
*args: Path components to join.
Returns:
str: A single UCXL path.
"""
ucxl = "ucxl://AB001:dev@project:task/~~/policies/linting/details.md"
return posixpath.join(*args)