mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
fix required_size implementation of signature help
Trunctation should always be handled by the parent. Returning None is only supposed to indicate a missing implementation Co-authored-by: Ben Fekih, Hichem" <hichem.f@live.de>
This commit is contained in:
parent
2d6d876a23
commit
93e8c16614
1 changed files with 1 additions and 4 deletions
|
@ -155,10 +155,7 @@ impl Component for SignatureHelp {
|
||||||
|
|
||||||
let sig = &self.signatures[self.active_signature];
|
let sig = &self.signatures[self.active_signature];
|
||||||
|
|
||||||
if PADDING >= viewport.1 || PADDING >= viewport.0 {
|
let max_text_width = viewport.0.saturating_sub(PADDING).clamp(10, 120);
|
||||||
return None;
|
|
||||||
}
|
|
||||||
let max_text_width = (viewport.0 - PADDING).min(120);
|
|
||||||
|
|
||||||
let signature_text = crate::ui::markdown::highlighted_code_block(
|
let signature_text = crate::ui::markdown::highlighted_code_block(
|
||||||
sig.signature.as_str(),
|
sig.signature.as_str(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue